(PHP 8)
str_starts_with — 检查字符串是否以给定子字符串开头
haystack
要搜索的字符串。
needle
要在 haystack
中搜索的子字符串。
示例 #1 使用空字符串 ''
<?php
if (str_starts_with('abc', '')) {
echo "所有字符串都以空字符串开头";
}
?>
以上示例将输出
All strings start with the empty string
示例 #2 显示区分大小写
<?php
$string = 'The lazy fox jumped over the fence';
if (str_starts_with($string, 'The')) {
echo "字符串以 'The' 开头\n";
}
if (str_starts_with($string, 'the')) {
echo '字符串以 "the" 开头';
} else {
echo '"the" 未找到,因为大小写不匹配';
}
?>
以上示例将输出
The string starts with 'The' "the" was not found because the case does not match
注意: 此函数是二进制安全的。