\GeekLab\ToolBox\Strings Basic usage: beginsWith(string $haystack, string $needle): bool Description: Does a string begin with $needle? Usage: if(\GeekLab\ToolBox\Strings::beginWith('This is my haystack', 'This'))) { //... } endsWith(string $haystack, string $needle): bool Description: Does a string end with $needle? Usage: if(\GeekLab\ToolBox\Strings::endsWith('This is my haystack', 'stack'))) { //... }