{site_name}

{site_name}

🌜 搜索

在PHP中,strpos() 函数用于在字符串中查找一个子字符串第一次出现的位置

php 𝄐 0
php strpos函数,php strpos函数用法,phpstrpos
在PHP中,strpos() 函数用于在字符串中查找一个子字符串第一次出现的位置。它的语法是:

strpos($string, $substring)

其中,$string 是要搜索的字符串,$substring 是要查找的子字符串。

当找到子字符串时,strpos() 函数会返回子字符串第一次出现的索引值。如果找不到子字符串,则返回 false。

以下是一个示例:

php
$string = "Hello, how are you today?";
$substring = "how";

$position = strpos($string, $substring);

if ($position !== false) {
echo "The substring '$substring' was found at index $position.";
} else {
echo "The substring '$substring' was not found in the string.";
}


以上代码的输出将是:The substring 'how' was found at index 7.