What will be the output of the following PHP code ?
<?php
function time($string)
{
echo strtr("Towe Pa55", "ow5", $string);
}
time("ims");
?>
<?php
function time($string)
{
echo strtr("Towe Pa55", "ow5", $string);
}
time("ims");
?>A. Time Pa55
B. Towe Pa55
C. Towe Pass
D. Time Pass
Answer: Option D

Join The Discussion