我试图将十六进制链接转换为另一页上的文本。
这是应该执行此操作的代码的一部分:
URL = url.php?post=48656c6c6f20736972733f
$file = $_GET['post'];
$file = pack("H*",bin2hex($file));
echo "<h2 class='center'>The file " . $file . " does not exist</h2>";
或
$title = pack("H*",bin2hex($_GET['post']));
$title = ucfirst($title);
echo $title;
这些的输出是&#34; 48656c6c6f20736972733f&#34;
答案 0 :(得分:0)
找到答案
pack("H*", $file);
工作得很好