What Will Be The Output Of The Following Php Codep Pre Langphp #264
What will be the output of the following PHP code?</p> <pre><code class="language-php" line="1"> <?php $name = "What is your name?"; if (preg_match("/name/"),$name) echo "My name is Will Pitt "; else echo "My name is not Will Pitt "; if (preg_match("/are/")) echo "I am great"; else echo "I am not great"; ?> </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 $name = "What is your name?"; if (preg_match("/name/"),$name) echo "My name is Will Pitt "; else echo "My name is not Will Pitt "; if (preg_match("/are/")) echo "I am great"; else echo "I am not great"; ?>
My name is Will Pitt I am great
My name is not Will Pitt I am great
My name is Will Pitt I am not great
My name is not Will Pitt I am not great