You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
540 B
PHP

<?php
function length_of_last_word($s)
{
if (strlen(trim($s)) == 0)
{
return "Blank String";
}
$words = explode(' ', $s);
if (sizeof($words) >1)
return strlen(substr($s, strrpos($s, ' ') + 1));
else
return "Single word";
}
print_r(length_of_last_word("PHP Exercises")."\n");
print_r(length_of_last_word("PHP")."\n");
print_r(length_of_last_word("")."\n");
print_r(length_of_last_word(" ")."\n");
?>