1
What is the output of the following program ?
<?php $str = "Learn PHP and \c"; echo $str; ?>
Answer: Option [C]
Unknown escape sequence \c is ignored
<?php $str = "Learn PHP and \c"; echo $str; ?>
Answer: Option [C]
Unknown escape sequence \c is ignored
Article and Schedule Quiz | Start Test! |
Answer: Option [D]