startsWith() and endsWith() functions in PHP

How can I write two functions that would take a string and return if it starts with the specified character/string or ends with it?

For example:

$str="|apples}";

echo startsWith($str, '|'); //Returns true
echo endsWith($str, '}'); //Returns true

3
32

Leave a Comment