"; echo "upper case of the string is".strtoupper($str); $temp=0; $temp1=0; $loc=0; $str1=explode(" ",$str); $str2=implode("-",$str1); $len=strlen($str1[0]); $small=strlen($str1[0]); for($i=0;$i$len) { $len=strlen($str1[$i]); $temp=$i; } elseif(strlen($str1[$i])<$small) { $samll=strlen($str1[$i]); $temp1=$i; } } echo strpos($str2,"PHP"); echo "
"; echo "lengest string is".$str1[$temp]; echo"
"; echo "smallest string is".$str1[$temp1]; echo"
"; echo $str2; echo"
"; echo "location of the PHP is".$loc+1; echo "
"; echo "after rplace the string is".str_replace("PHP","XYZ",$str); ?>