Actions
Feature proposal #6751
closedcreate_function deprecated in PHP 7.2
Description
Replace create_function usages as this function is deprecated in PHP 7.2 and eventually will be removed.
Actions
Added by krileon over 7 years ago. Updated over 7 years ago.
Description
Replace create_function usages as this function is deprecated in PHP 7.2 and eventually will be removed.
Possible solution is a splat operator available in PHP 5.6+, but due to CB using call_user_func_array the reference usecase for splat operator does not appear to work.
http://php.net/manual/en/functions.arguments.php#functions.variable-arg-list.new
Will fallback to a tmpfile usage that mimics eval if create_function is disabled or on PHP 7.2 or greater.