[PHP] PHP7已经删除了preg_replace的e修饰符

Posted 陶士涵的菜地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[PHP] PHP7已经删除了preg_replace的e修饰符相关的知识,希望对你有一定的参考价值。

官网提示是这样的,对/e修饰符的支持已删除。请改用preg_replace_callback()
原因是/e 修正符使 preg_replace() 将 replacement 参数当作 php 代码(在适当的逆向引用替换完之后),会被一句话后门使用

 

看看smarty中是也是这样用的,也是存在问题
$source_content = preg_replace($search.‘e‘, "‘"
. $this->_quote_replace($this->left_delimiter) . ‘php‘
. "‘ . str_repeat(" ", substr_count(‘\0‘, " ")) .‘"
. $this->_quote_replace($this->right_delimiter)
. "‘"
, $source_content);
可以把smarty模板修改成这个
$source_content = preg_replace_callback($search, function ($matches){
$str="";
$str.=$this->_quote_replace($this->left_delimiter) . ‘php‘;
$str.=str_repeat("\n\", substr_count($matches[1], "\n\"));
$str.=$this->_quote_replace($this->right_delimiter);
return $str;
}, $source_content);

以上是关于[PHP] PHP7已经删除了preg_replace的e修饰符的主要内容,如果未能解决你的问题,请参考以下文章

LAMP环境的搭建----PHP7的安装

从PHP5到PHP7的注意事项——PHP7全面删除Mysql扩展支持

CentOS7.4 通过yum安装php7.0

PHP7.3.4版本切换到PHP7.1.9版本运行Laravel

如何在 apache 中启用 php7 模块?

PHP7的新特性