在PHP中,可以使用strpos()
函數來查找文本。strpos()
函數會在一個字符串中搜索另一個字符串的首次出現,并返回其位置(從0開始計數)。如果找不到子字符串,則返回false
。
以下是一個簡單的示例:
<?php
$text = "Hello, welcome to the world of PHP!";
$search = "world";
if (strpos($text, $search) !== false) {
echo "Found '$search' in the text.";
} else {
echo "Did not find '$search' in the text.";
}
?>
在這個示例中,我們在$text
變量中查找$search
變量中的文本。如果找到了匹配項,我們輸出一條消息表示找到了文本;否則,我們輸出一條消息表示沒有找到文本。