PHP 7.2 函数 create_function() 已弃用
2022-08-30 08:07:14
我已经在下面的应用程序中使用了。create_function()
$callbacks[$delimiter] = create_function('$matches', "return '$delimiter' . strtolower(\$matches[1]);");
但是对于 PHP 7.2.0,已被弃用。create_function()
如何为 PHP 7.2.0 重写上面的代码?