在PHP 7.0.0中ereg_replace 函数使用preg_replace替换方法如下:
ereg_replace
— Replace regular expression
(在PHP 4, PHP 5中)
这个函数在PHP 5.3.0 中就已经不赞成使用,并在 PHP 7.0.0.中被移除
代码:
string ereg_replace ( string $pattern , string $replac
查看更多 http://php.net/manual/en/function.ereg-replace.php
preg_replace
— Perform a regular expression search and replace
(在PHP 4, PHP 5, PHP 7中)
代码:
mixed preg_replace ( mixed $pattern , mixed $replace
查看更多 http://php.net/manual/en/function.preg-replace.php
在PHP 7.0.0中ereg_replace 函数可使用preg_replace代替,只是将ereg_replace中的$pattern两边加上”/“以闭合如"/pattern/"。
下面介绍一个关于visual studio运行报错的方法:
visual studio 运行程序的时候,如果在运行过程中想要修改一些代码结果显示 changes are not allowed while code is running 如下所示,还要停止运行然后编辑完再运行查看结果,感觉很不方便而且效率低。
解决办法:
英文版:tools->options->debugging->general,将前面的勾选取消"Enable Edit and Continue”。
中文版:工具->选项->调试->常规->将 启用“编辑并继续”前面的对勾去掉如下图: