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