哪个PHP函数用于将二进制文件读入字符串?

前端之家收集整理的这篇文章主要介绍了哪个PHP函数用于将二进制文件读入字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
哪个 PHP函数用于将二进制文件读入字符串?
尝试一下
$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

猜你在找的PHP相关文章