如何使用php搜索文本,如果($text包含“世界”)

2022-08-30 18:07:59

如何使用php搜索文本?

像这样:

<?php

$text = "Hello World!";

if ($text contains "World") {
    echo "True";
}

?>

除了更换工作条件。if ($text contains "World") {


答案 1

在你的情况下,你可以只使用 strpos()stripos() 进行不区分大小写的搜索:

if (stripos($text, "world") !== false) {
    echo "True";
}

答案 2

你需要的是 strstr()(或者,就像 LucaB 指出的那样)。像这样使用它:stristr()

if(strstr($text, "world")) {/* do stuff */}

推荐