what is the output below mentioned?
Top Questions
<?php
$text = 'php m programmer';
echo strpbrk($text, 'm');
?>a) mmer
b) mer
c) all of the above
d) none of the above
ANS: none of the above
NOTE: if we execute the above code we get the output as 'm programmer'
Post new comment