日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

php读取远程二进制文件,php 读取二进制文件

發布時間:2025/5/22 54 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php读取远程二进制文件,php 读取二进制文件 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

php 讀取二進制文件

class?Hex

{

var?$file;

var?$hex;

function?__construct($file)

{

$this->file?=?$file;

}

function?gethex()

{

$handle?=?fopen($this->file,?'r')?or?die('Hai?i?permessi?');

while(!feof($handle))

{

foreach(unpack('C*',fgets($handle))?as?$dec)

{

$tmp?=?dechex($dec);

$this->hex[]?.=?strtoupper(str_repeat('0',2-strlen($tmp)).$tmp);

}

}

return?join($this->hex);

}

function?writehex($hexcode)

{

foreach(str_split($hexcode,2)?as?$hex)

{

$tmp?.=?pack('C*',?hexdec($hex));

}

$handle?=?fopen($this->file,?'w+')?or?die('Hai?i?permessi?');

fwrite($handle,?$tmp);

}

}

?>

include('hex.class.php');

$obj?=?new?Hex('test');

$hexcode?=?$_POST['hexcode'];

if($hexcode)

{

$obj->writehex(trim($hexcode));

print?'

0k.

';

}

?>

=trim($obj->gethex())?>

總結

以上是生活随笔為你收集整理的php读取远程二进制文件,php 读取二进制文件的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。