What Will Be The Output Of The Following Php Codep Pre Langphp #140
What will be the output of the following PHP code?</p> <pre><code class="language-php" line="1"> <?php function convertSpace($string) { return str_replace("_", " ", $string); } $string = "Peter_is_a_great_guy!"; echo filter_var($string, FILTER_CALLBACK, array("options"=>"convertSpace")); ?> </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs107 PHP: Hypertext Preprocessor. It can also be found in gs gs107 Error Handling and Exception Handling - PHP Filter - Quiz No.1.
What will be the output of the following PHP code?
<?php function convertSpace($string) { return str_replace("_", " ", $string); } $string = "Peter_is_a_great_guy!"; echo filter_var($string, FILTER_CALLBACK, array("options"=>"convertSpace")); ?>
Peter_is_a_great_guy!
Peterisagreatguy!
Peter is a great guy!
Error