PHP 8 中新增了一個實用的字串函數 str_starts_with()。本篇文章將介紹函數的介紹、用法及範例。
str_starts_with() 函數可以判斷字串是否以另一個字串開頭,並傳回布林值,其語法如下:
str_starts_with(string $haystack , string $needle): bool
參數解釋:
$haystack
:要搜尋的字串。 $needle
:被搜尋的開頭字串。 傳回值:
$haystack
以 $needle
開頭,則傳回 true。 $haystack
不以 $needle
開頭,則傳回 false。 下面是一個範例,展示如何使用str_starts_with() 函數:
<?php $haystack = 'Hello World'; $needle = 'Hello'; if (str_starts_with($haystack, $needle)) { echo "字符串 '{$haystack}' 以 '{$needle}' 开头。"; } else { echo "字符串 '{$haystack}' 没有以 '{$needle}' 开头。"; } // Output: 字符串 'Hello World' 以 'Hello' 开头。
除了上面的範例,我們還可以透過以下三個範例來進一步了解str_starts_with() 函數的用法。
<?php $haystack = 'Hello World'; $needle = 'hello'; if (str_starts_with(strtolower($haystack), strtolower($needle))) { echo "字符串 '{$haystack}' 以 '{$needle}' 开头(不区分大小写)。"; } else { echo "字符串 '{$haystack}' 没有以 '{$needle}' 开头(不区分大小写)。"; } // Output: 字符串 'Hello World' 以 'hello' 开头(不区分大小写)。
<?php $url = 'https://www.example.com'; $allowedUrls = ['https://www.example.com', 'https://www.example.org']; foreach ($allowedUrls as $allowedUrl) { if (str_starts_with($url, $allowedUrl)) { echo "URL '{$url}' 被允许。"; } } // Output: URL 'https://www.example.com' 被允许。
<?php $filename = 'example.php'; $allowedExtensions = ['php', 'html']; foreach ($allowedExtensions as $extension) { if (str_ends_with($filename, '.' . $extension)) { echo "文件 '{$filename}' 合法,扩展名为 '{$extension}'。"; } } // Output: 文件 'example.php' 合法,扩展名为 'php'。
str_starts_with() 函數的加入彌補了PHP 原生函數庫中的一個短板,無疑會帶來更高的生產力。在開發中,根據實際需要靈活運用該函數,會讓你的程式碼更加簡潔,更加易讀易維護。
以上是PHP8中的字串函數:str_starts_with()如何使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!