Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
function time($string)
{
echo strtr("Towe Pa55", "ow5", $string);
}
time("ims");
?>
Answer : Option D
Explanation :
The strtr() function translates certain characters in a string.
Be The First To Comment