函式名:str_ends_with()
適用版本:PHP 8.0.0 或更高版本
函式功能:判斷一個字串是否以指定的字尾結尾
語法:bool str_ends_with ( string $haystack , string $needle )
引數:
- $haystack:要檢查的字串
- $needle:要檢查的字尾
返回值:
- 如果 $haystack 以 $needle 結尾,則返回 true
- 如果 $haystack 不以 $needle 結尾,則返回 false
示例:
$string1 = "Hello, World!";
$string2 = "Hello, PHP!";
$suffix = "World!";
// 檢查 $string1 是否以 $suffix 結尾
if (str_ends_with($string1, $suffix)) {
echo "$string1 以 $suffix 結尾";
} else {
echo "$string1 不以 $suffix 結尾";
}
// 檢查 $string2 是否以 $suffix 結尾
if (str_ends_with($string2, $suffix)) {
echo "$string2 以 $suffix 結尾";
} else {
echo "$string2 不以 $suffix 結尾";
}
輸出:
Hello, World! 以 World! 結尾
Hello, PHP! 不以 World! 結尾
注意:在 PHP 8.0.0 之前的版本中,可以使用類似的功能透過以下程式碼實現:
function str_ends_with($haystack, $needle) {
$length = strlen($needle);
if ($length == 0) {
return true;
}
return substr($haystack, -$length) === $needle;
}
然而,使用 PHP 8.0.0 及更高版本的內建函式 str_ends_with() 可以提供更簡潔和高效的方式來判斷一個字串是否以指定的字尾結尾。