溫馨提示×

php如何查找文本

PHP
小億
83
2024-10-11 15:38:10
欄目: 編程語言

在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),我們輸出一條消息表示找到了文本;否則,我們輸出一條消息表示沒有找到文本。

0