“PHP Depreced: función create_function ()” Código de respuesta

PHP Depreced: función create_function ()

//From
create_function( '$caps', "return '$caps';" );

//To
function($caps) {return $caps;}
mattia896

Función create_function () está en desuso en

//change create_function to anonymous like so:
//change:
$square = create_function('$x', 'return pow($x,2);');
//to:
$square = function($x){
	return pow($x,2);
};
Friendly Hawk

Respuestas similares a “PHP Depreced: función create_function ()”

Preguntas similares a “PHP Depreced: función create_function ()”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código