php文件转十六进制的方法:1、创建一个PHP示例文件;2、通过“function fileToHex($file){…}”方法将文件内容转为16进制输出即可。
本文操作环境:Windows7系统,PHP7.4版,Dell G3电脑。
php 文件怎么转十六进制?
php实现文件与16进制相互转换的方法示例
代码如下:
<?php/** * php 文件与16进制相互转换 * Date: 2017-01-14 * Author: fdipzone * Ver: 1.0 * * Func * fileToHex 文件转16进制 * hexToFile 16进制转为文件 *//** * 将文件内容转为16进制输出 * @param String $file 文件路径 * @return String */function fileToHex($file){ if(file_exists($file)){ $data = file_get_contents($file); return bin2hex($data); } return \’\’;}/** * 将16进制内容转为文件 * @param String $hexstr 16进制内容 * @param String $file 保存的文件路径 */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
推荐学习:《PHP视频教程》
更多关于云服务器,域名注册,虚拟主机的问题,请访问西部数码官网:www.west.cn