在PHP中,可以使用strpos()
函數(shù)來查找文本。strpos()
函數(shù)會在一個(gè)字符串中搜索另一個(gè)字符串的首次出現(xiàn),并返回其位置(從0開始計(jì)數(shù))。如果找不到子字符串,則返回false
。
以下是一個(gè)簡單的示例:
<?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.";
}
?>
在這個(gè)示例中,我們在$text
變量中查找$search
變量中的文本。如果找到了匹配項(xiàng),我們輸出一條消息表示找到了文本;否則,我們輸出一條消息表示沒有找到文本。