本文操作环境:windows7系统,PHP7.4版,Dell G3电脑。php 文件怎么转十六进制?php实现文件与16进制相互转换的方法示例代码如下:<?php function fileToHex($file){
本文操作环境:windows7系统,PHP7.4版,Dell G3电脑。
php 文件怎么转十六进制?
php实现文件与16进制相互转换的方法示例
代码如下:
<?php
function fileToHex($file){
if(file_exists($file)){
$data = file_get_contents($file);
return bin2hex($data);
}
return '';
}
function hexToFile($hexstr, $file){
if($hexstr){
$data = pack('H*', $hexstr);
file_put_contents($file, $data, true);
}
}
// 演示
$file = 'test.doc';
// 文件转16进制
$hexstr = fileToHex($file);
echo '文件转16进制<br>';
echo $hexstr.'<br><br>';
// 16进制转文件
$newfile = 'new.doc';
hexToFile($hexstr, $newfile);
echo '16进制转文件<br>';
var_dump(file_exists($newfile));
?>
输出:
文件转16进制
efbbbf3130e4b8aae4bfafe58da7e69291e28094e280943235e4b8aae4bbb0e58da7e8b5b7...
16进制转文件
boolean true
--结束END--
本文标题: php 文件怎么转十六进制
本文链接: https://lsjlt.com/news/801.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0