在 php 中,你可以使用多種方法來查找字符是否存在。以下是其中幾種常用的方法:
使用 strpos() 函數:
$string = "hello,world!";
$char = "o";
if (strpos($string,$char)!== false) {
echo "字符 '$char'存在於字符串中。";
} else {
echo "字符 '$char'不存在於字符串中。";
}
使用 str_contains() 函數(需要 php 8.0 或更高版本):
$string = "hello,world!";
$char = "o";
if (str_contains($string,$char)) {
echo "字符 '$char'存在於字符串中。";
} else {
echo "字符 '$char'不存在於字符串中。";
}
使用 preg_match() 函數:
$string = "hello,world!";
$char = "o";
if (preg_match("/$char/",$string)) {
echo "字符 '$char'存在於字符串中。";
} else {
echo "字符 '$char'不存在於字符串中。";
}
這些方法都可以用來查找字符是否存在於字符串中。你可以根據自己的需求選擇適合的方法。
- 編程問答
- 答案列表
php 查找字符是否存在[朗讀]
加入收藏