Automattic\WooCommerce\Utilities
StringUtil::ends_with
Checks to see whether or not a string ends with another.
Method of the class: StringUtil{}
No Hooks.
Returns
true|false. True if the $string ends with $ends_with, false otherwise.
Usage
$result = StringUtil::ends_with( $string, $ends_with, $case_sensitive ): bool;
- $string(string) (required)
- The string we want to check.
- $ends_with(string) (required)
- The string we're looking for at the end of
$string. - $case_sensitive(true|false)
- Indicates whether the comparison should be case-sensitive.
Default:true
StringUtil::ends_with() StringUtil::ends with code WC 10.8.1
public static function ends_with( string $string, string $ends_with, bool $case_sensitive = true ): bool {
$len = strlen( $ends_with );
if ( $len > strlen( $string ) ) {
return false;
}
$string = substr( $string, -$len );
if ( $case_sensitive ) {
return strcmp( $string, $ends_with ) === 0;
}
return strcasecmp( $string, $ends_with ) === 0;
}