PHP Functions
What will be the output of the following PHP code ?
function time($string)
{
echo strtr("Towe Pa55", "ow5", $string);
}
time("ims");

Towe Pa55
Time Pass
Towe Pass
Time Pa55

ANSWER DOWNLOAD EXAMIANS APP