Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
$url = "contact@examveda.com";
echo ltrim(strstr($url, "@"),"@");
?>
Answer : Option D
Explanation :
The strstr() function returns the remainder of a string beginning with the first occurrence of a predefined string.
Be The First To Comment