From 0156004ccb0e06d702b1e7aac3707d4ac5ed475a Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Tue, 30 Jan 2024 17:26:21 +0000 Subject: [PATCH] General: Backport polyfills for `str_ends_with()` and `str_starts_with()`. Merges [52040], [56016], and [56015] to 4.3 branch. Props ocean90, SergeyBiryukov, desrosj, joemcgill, jorbin, mukesh27. Built from https://develop.svn.wordpress.org/branches/4.3@57440 git-svn-id: http://core.svn.wordpress.org/branches/4.3@56946 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/compat.php | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/wp-includes/compat.php b/wp-includes/compat.php index 553faeb1d8..e511251a3d 100644 --- a/wp-includes/compat.php +++ b/wp-includes/compat.php @@ -260,3 +260,49 @@ endif; if ( ! defined( 'JSON_PRETTY_PRINT' ) ) { define( 'JSON_PRETTY_PRINT', 128 ); } + +if ( ! function_exists( 'str_starts_with' ) ) { + /** + * Polyfill for `str_starts_with()` function added in PHP 8.0. + * + * Performs a case-sensitive check indicating if + * the haystack begins with needle. + * + * @since 5.9.0 + * + * @param string $haystack The string to search in. + * @param string $needle The substring to search for in the `$haystack`. + * @return bool True if `$haystack` starts with `$needle`, otherwise false. + */ + function str_starts_with( $haystack, $needle ) { + if ( '' === $needle ) { + return true; + } + + return 0 === strpos( $haystack, $needle ); + } +} + +if ( ! function_exists( 'str_ends_with' ) ) { + /** + * Polyfill for `str_ends_with()` function added in PHP 8.0. + * + * Performs a case-sensitive check indicating if + * the haystack ends with needle. + * + * @since 5.9.0 + * + * @param string $haystack The string to search in. + * @param string $needle The substring to search for in the `$haystack`. + * @return bool True if `$haystack` ends with `$needle`, otherwise false. + */ + function str_ends_with( $haystack, $needle ) { + if ( '' === $haystack ) { + return '' === $needle; + } + + $len = strlen( $needle ); + + return substr( $haystack, -$len, $len ) === $needle; + } +}