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:
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:
- http://php.net/crypt - (PHP 4, PHP 5)