Answers for "This function is deprecated"

PHP
1

Function create_function() is deprecated in

//change create_function to anonymous like so:
//change:
$square = create_function('$x', 'return pow($x,2);');
//to:
$square = function($x){
	return pow($x,2);
};
Posted by: Guest on September-29-2020

Code answers related to "This function is deprecated"

Browse Popular Code Answers by Language