理解PHP的startsWith()和endsWith()函数
在PHP中,startsWith()和endsWith()函数提供了一种便捷的方法确定字符串是否以特定字符或子字符串开始或终止。以下是实现它们的方法:
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中文网其他相关文章!