Call to undefined function password_hash() in PHP

2019-01-20 03:10发布

I am trying to use the password_hash() function in my website, and I am getting an error Call to undefined function password_hash(). I checked my Server Details in GoDaddy, and my current version of php is 5.4. How can I fix this?

1条回答
乱世女痞
2楼-- · 2019-01-20 03:58

password_hash() is not available in PHP 5.4. It is a new feature in PHP 5.5. In the meantime you can use this compatibility pack replacement.

Compatibility pack sidenote:

This library requires PHP >= 5.3.7 OR a version that has the $2y fix backported into it (such as RedHat provides). Note that Debian's 5.3.3 version is NOT supported.

For versions not covered by these versions, consult:

查看更多
登录 后发表回答