@H_
301_1@
尝试一下
$handle = @fopen("/path/to/file.bin","r");
if ($handle) {
while (!feof($handle)) {
$buffer[] = fgets($handle,400);
}
fclose($handle);
$buffer[0][0] = chr(hexdec("FF")); // set the first byte to 0xFF
}
// convert array to string
@H_
301_1@