首頁 > 後端開發 > php教程 > 在 PHP 中如何檢查字串是否以特定子字串開頭或結尾?

在 PHP 中如何檢查字串是否以特定子字串開頭或結尾?

Patricia Arquette
發布: 2024-12-30 06:02:13
原創
448 人瀏覽過

How Can I Check if a String Starts or Ends with a Specific Substring in PHP?

理解PHP的startsWith()和endsWith()函數

在PHP中,startsWith()和endsWith(>

在PHP中,startsWith()和endsWith()函數提供了一ith()函數提供了一ith()函數種便捷的方法決定字串是否以特定字元或子字串開始或終止。以下是實現它們的方法:

PHP 8.0 及以上

對於PHP 8.0 及更高版本,內建的str_starts_with 和str_ends_with 函數提供了一個簡單的解決方案:
var_dump(str_starts_with('|apples}', '|')); // true
var_dump(str_ends_with('|apples}', '}')); // true
登入後複製

之前的PHP 版本8.0

對於8.0 之前的PHP 版本,您可以使用以下自訂函數:

startsWith() 函數

function startsWith( $haystack, $needle ) {
    $length = strlen( $needle );
    return substr( $haystack, 0, $length ) === $needle;
}

echo startsWith('|apples}', '|'); // true
登入後複製

endsWith()函數
function endsWith( $haystack, $needle ) {
    $length = strlen( $needle );
    if( !$length ) {
        return true;
    }
    return substr( $haystack, -$length ) === $needle;
}

echo endsWith('|apples}', '}'); // true
登入後複製

這些函數接受兩個參數:輸入字串(haystack)和要檢查的字元或子字串(needle)。如果乾草堆以針開始或結束,則傳回 true,否則傳回 false。

以上是在 PHP 中如何檢查字串是否以特定子字串開頭或結尾?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板