X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FStrings.php;h=1d440c19b7eede0aef7e7cd9b8ec13aea6df6c3c;hb=18cd4f7412b5b48108cc1a0d2f5d9d745f8bdbe9;hp=35e7ebe1510c732ccd793e2837297acdbbf666b0;hpb=791986027428ba3764a697449b863024f1dc8598;p=friendica.git diff --git a/src/Util/Strings.php b/src/Util/Strings.php index 35e7ebe151..1d440c19b7 100644 --- a/src/Util/Strings.php +++ b/src/Util/Strings.php @@ -379,6 +379,7 @@ class Strings /** * Check if the first string starts with the second * + * @see http://maettig.com/code/php/php-performance-benchmarks.php#startswith * @param string $string * @param string $start * @return bool @@ -390,6 +391,21 @@ class Strings return $return; } + /** + * Checks if the first string ends with the second + * + * @see http://maettig.com/code/php/php-performance-benchmarks.php#endswith + * @param string $string + * @param string $end + * @return bool + */ + public static function endsWith(string $string, string $end) + { + $return = substr_compare($string, $end, -strlen($end)) === 0; + + return $return; + } + /** * Returns the regular expression string to match URLs in a given text *