PHP Filter
What will be the output of the following PHP code?
function convertSpace($string)
{
return str_replace("_", " ", $string);
}
$string = "Peter_is_a_great_guy!";
echo filter_var($string, FILTER_CALLBACK, array("options"=>"convertSpace"));

Error
Peterisagreatguy!
Peter is a great guy!
Peter_is_a_great_guy!

ANSWER DOWNLOAD EXAMIANS APP