I have used create_function
in my application below.
$callbacks[$delimiter] = create_function('$matches', "return '$delimiter' . strtolower($matches[1]);");
But for PHP 7.2.0, the create_function()
is deprecated.
How to fix my code above on PHP 7.2.0.
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…