Create a function to check whether a string ends with the specified string or not. The function should return TRUE on success or FALSE on failure.
The following is the syntax −
endFunc(str, lastStr)
Consider the following parameters in it to check −
str − The string to be tested
lastStr − The text to be searched in the end of the specified string.
Example
The following is an example −
<?php function endFunc($str, $lastString) { $count = strlen($lastString); if ($count = = 0) { return true; } return (substr($str, -$count) = = = $lastString); } if(endFunc("pqrstuv","rst")) echo "True!"; else echo "False!"; ?>
Output
The following is the output −
False!