1

我正在从客户端上的 python 脚本触发我的网络服务器上的 php 脚本。我正在处理我提供给客户端脚本的二进制数据,以便解析如下:

$file = "gw/gateway.py"
if (file_exists($file)) {
    $gw_file_sz = filesize($file);
    $filesz1 = $gw_file_sz/256;
    $filesz2 = $gw_file_sz%256;
}
    $binarydata = pack("C*", 0x01, $year1, $year2, $day1, $day2, $min1, $min2, $sec, 0x00, 0x3f, 0x02, 0x00, 0x1c, 0x2c , 0x4c, 0xdf, 0xcb,
                                                                                             0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe8, 0x41,
                                                 0x04, 0x00, 0x1c, 0x2c , 0x5c, 0xe4, 0x38,
                                                 0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe3, 0x7b,
                                                 0x02, 0x00, 0x1c, 0x2c , 0x4c, 0xdf, 0xbf,
                                                 0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe7, 0xd7,
                                                 0x02, 0x00, 0x1c, 0x2c , 0x4c, 0xdf, 0x64,
                                                 0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe7, 0x7a,
                                                 0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe8, 0x22,
                                               0x08, $filesz1, $filesz2);

echo $binarydata;

现在这可以很好地处理这些数据,但是我如何在这个流的末尾附加我的文件 $file 以供我的客户接收?在 Python 方面,我从fh = StringIO(data)读取所有数据,在其中我得到像MyByte = ord(fh.read(1))这样的字节

[编辑] 我只是试图在最后(回声之前)附加数据,如:

    $fh = fopen($file);
    for ($i=0;$i<filesize($file); $i++) {
        $binarydata.=pack("C*",fread($fh,1));
    }
    fclose($fh);

但它似乎不起作用,为什么不......?

4

1 回答 1

1

由于您正在输出数据流,因此我看不出有任何理由不能直接回显整个文件内容。我还将 $filesz1 修改为我认为您可能想要的。

$file = "gw/gateway.py"
if (file_exists($file)) {
    $gw_file_sz = filesize($file);
    $filesz1 = floor($gw_file_sz/256);
    $filesz2 = $gw_file_sz%256;
}
$binarydata = pack("C*", 0x01, $year1, $year2, $day1, $day2, $min1, $min2, $sec, 
    0x00, 0x3f, 0x02, 0x00, 0x1c, 0x2c , 0x4c, 0xdf, 0xcb,
    0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe8, 0x41,
    0x04, 0x00, 0x1c, 0x2c , 0x5c, 0xe4, 0x38,
    0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe3, 0x7b,
    0x02, 0x00, 0x1c, 0x2c , 0x4c, 0xdf, 0xbf,
    0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe7, 0xd7,
    0x02, 0x00, 0x1c, 0x2c , 0x4c, 0xdf, 0x64,
    0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe7, 0x7a,
    0x02, 0x00, 0x1c, 0x2c , 0x5c, 0xe8, 0x22,
    0x08, $filesz1, $filesz2);

echo $binarydata;
echo file_get_contents($file);
于 2012-11-20T22:42:17.513 回答