类型为H的PHP包不起作用

时间:2015-02-11 18:57:25

标签: php pack

我试图将十六进制链接转换为另一页上的文本。

这是应该执行此操作的代码的一部分:

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;

1 个答案:

答案 0 :(得分:0)

找到答案

pack("H*", $file);

工作得很好