在PHP中實作startsWith()和endsWith()函數
在PHP中,您可以建立自訂函數來檢查字串是否開始或以特定字元或字串結尾。以下是寫這些函數的方法:
startsWith() 函數:
function startsWith($haystack, $needle) { $length = strlen($needle); return substr($haystack, 0, $length) === $needle; }
此函數採用兩個參數:haystack(要檢查的字串)和針(您在開頭查找的字元或字串)。它檢查從位置 0 開始的 haystack 子串的長度是否等於針並且與針相符。如果為 true,則表示字串以針開頭。
範例:
$str = '|apples}'; echo startsWith($str, '|'); // Returns true
endsWith() 函數:
function endsWith($haystack, $needle) { $length = strlen($needle); if (!$length) { return true; } return substr($haystack, -$length) === $needle; }
這個函數的工作原理類似,只不過它從字串末尾開始檢查haystack 的子字串(-$長度)。如果子字串與needle匹配,則表示該字串以needle結尾。
範例:
$str = '|apples}'; echo endsWith($str, '}'); // Returns true
PHP 8.0 及更高版本:
從PHP 內建函數str_starts_with和str_ends_with 提供相同的功能。
var_dump(str_starts_with('|apples}', '|')); // Returns true var_dump(str_ends_with('|apples}', '}')); // Returns true
以上是如何在 PHP 中實作 `startsWith()` 和 `endsWith()` 函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!