What Will Be The Output Of The Following Php Codep Pre Langphp #266
What will be the output of the following PHP code?</p> <pre><code class="language-php" line="1"> <?php $str = "Hello! My name is Cameron Fox. Coffee?"; $find = array('/is/','/coffee/'); $replace = array('/was/','/tea/'); echo preg_replace ($find, $replace, $str); ?> </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 Objects and Databases - PHP Preg Basics - Quiz No.1.
What will be the output of the following PHP code?
<?php $str = "Hello! My name is Cameron Fox. Coffee?"; $find = array('/is/','/coffee/'); $replace = array('/was/','/tea/'); echo preg_replace ($find, $replace, $str); ?>
Hello! My name was Cameron Fox. tea?
Hello! My name is Cameron Fox. tea?
Hello! My name is Cameron Fox. Coffee?
Hello! My name was Cameron Fox. Coffee?