strpos php 含义
时间: 2023-11-21 16:51:28 浏览: 133
PHP中使用strpos函数实现屏蔽敏感关键字功能
`strpos()` 是 PHP 中的一个字符串函数,用于查找字符串中特定子串的位置。它的含义为在一个字符串中查找另一个字符串第一次出现的位置,如果找到,则返回该位置的索引值(从0开始),如果没找到,则返回 `false`。
函数语法为:`strpos(string $haystack , mixed $needle [, int $offset = 0 ])`,其中 `$haystack` 表示要在其中查找的字符串,`$needle` 表示要查找的子串,`$offset` 表示查找的起始位置,默认为0。
例如,如果要查找字符串 "hello world" 中是否包含子串 "world",可以使用以下代码:
```php
$str = "hello world";
$pos = strpos($str, "world");
if ($pos !== false) {
echo "子串 'world' 在字符串中的位置为:" . $pos;
} else {
echo "未找到子串 'world'";
}
```
输出结果为:子串 'world' 在字符串中的位置为:6
阅读全文