在Linux上的PHP 5.6中未定义bintohex()和random_bytes()函数

时间:2016-01-22 19:00:03

标签: php linux apache centos

我试图打电话

echo bintohex(random_bytes(30));

但我的日志显示

PHP Fatal error:  Call to undefined function bintohex()

PHP 5.6.17
Apache 2.2.15
CentOS 6.7
Mcrypt 2.5.8 (在phpinfo()页面上安装和验证)
extension = mcrypt.so (现在)

为什么我找不到bintohex()或random_bytes()函数的任何想法?

1 个答案:

答案 0 :(得分:5)

因为 bin2hex http://php.net/manual/en/function.bin2hex.php不是" bintohex"

random_bytes 根据文档http://php.net/random_bytes基本上只存在于Php 7中,但这里是polyfill到5.x版本https://github.com/paragonie/random_compat