函数变更
最后更新于:2022-04-01 03:10:00
## 函数变更
### [](https://github.com/pangee/Migrating-from-PHP5.6.x-to-PHP7.0.x/blob/master/Changed-functions.md#php-核心函数)PHP 核心函数
* [debug_zval_dump()](http://php.net/manual/en/function.debug-zval-dump.php) 现在输出int和float类型,对应替代之前的long和double类型
* [dirname()](http://php.net/manual/en/function.dirname.php) 现有第二个参数(depth)可选,基于当前目录获取目录名称深度。
* [getrusage()](http://php.net/manual/en/function.getrusage.php) 不再支持windows系统
* [mktime()](http://php.net/manual/en/function.mktime.php) 及 [gmmktime()](http://php.net/manual/en/function.gmmktime.php) 不再接受 is_dst 参数。
* [preg_replace()](http://php.net/manual/en/function.preg-replace.php) 不再支持`\e (PREG_REPLACE_EVAL)`. 以 `preg_replace_callback()` 作为替代。
* [setlocale()](http://php.net/manual/en/function.setlocale.php) 第一个参数不再接受字符串。必须用 `LC_*` 系列常亮代替。
* exec()、system()、passthru() 函数现在具备空字节保护。