PHP8.0中新的字符串方法:str_starts_with和str_ends_with
时间:2023-05-14 17:48
PHP8.0 中新的字符串方法:str_starts_with 和 str_ends_with PHP8.0 是 PHP 编程语言的最新版本,它带来了许多令人兴奋的新功能和改进。其中,str_starts_with() 和 str_ends_with() 是两个非常有用的字符串方法,本文将为您介绍它们的作用、使用方法和示例。 str_starts_with() 方法 str_starts_with() 方法用于检查一个字符串是否以指定的子字符串开头,如果是则返回 true,否则返回 false。 这是 str_starts_with() 方法的语法: bool str_starts_with ( string $haystack , string $needle ) 其中,$haystack 参数是要检查的字符串,$needle 则是需要检查的子字符串。 下面是 str_starts_with() 方法的一些示例: 示例 1 要检查字符串是否以子字符串“Hello”开头: $myString = "Hello World"; } else { } // 输出:"字符串以 Hello 开头。" 示例 2 要检查字符串是否以数字“123”开头: $myString = "123ABC"; } else { } // 输出:"字符串以 123 开头。" str_ends_with() 方法 str_ends_with() 方法用于检查一个字符串是否以指定的子字符串结尾,如果是则返回 true,否则返回 false。 这是 str_ends_with() 方法的语法: bool str_ends_with ( string $haystack , string $needle ) 其中,$haystack 参数是要检查的字符串,$needle 则是需要检查的子字符串。 下面是 str_ends_with() 方法的一些示例: 示例 1 要检查字符串是否以子字符串“World”结尾: $myString = "Hello World"; } else { } // 输出:"字符串以 World 结尾。" 示例 2 要检查字符串是否以子字符串“789”结尾: $myString = "ABC789"; } else { } // 输出:"字符串以 789 结尾。" 结论 str_starts_with() 和 str_ends_with() 方法是 PHP8.0 中非常有用的字符串方法,它们可以让开发人员更加方便地检查字符串的开头和结尾,从而提高代码的可读性和性能。 如果您正在使用 PHP8.0 或更高版本,强烈建议您学习这两个方法,并在您的开发项目中使用它们。 以上就是PHP8.0中新的字符串方法:str_starts_with和str_ends_with的详细内容,更多请关注Gxl网其它相关文章!
if (str_starts_with($myString, "Hello")) {echo "字符串以 Hello 开头。";
echo "字符串不以 Hello 开头。";
if (str_starts_with($myString, "123")) {echo "字符串以 123 开头。";
echo "字符串不以 123 开头。";
if (str_ends_with($myString, "World")) {echo "字符串以 World 结尾。";
echo "字符串不以 World 结尾。";
if (str_ends_with($myString, "789")) {echo "字符串以 789 结尾。";
echo "字符串不以 789 结尾。";