最佳答案
我在下面的应用程序中使用了 create_function()
。
$callbacks[$delimiter] = create_function('$matches', "return '$delimiter' . strtolower(\$matches[1]);");
但是对于 PHP7.2.0,create_function()
是不推荐的。
如何为 PHP 7.2.0重写上面的代码?