PHP

stripos php 怎样实现功能

小樊
82
2024-11-28 18:36:14
栏目: 编程语言

stripos 是 PHP 中的一个字符串函数,它用于查找子字符串在另一个字符串中首次出现的位置。它不区分大小写。函数原型如下:

int stripos ( string $haystack , string $needle [, int $offset = 0 ] )

参数说明:

返回值:

示例:

<?php
$haystack = "Hello, World!";
$needle = "WORLD";
$offset = 7;

$result = stripos($haystack, $needle, $offset);

if ($result !== false) {
    echo "子字符串 '{$needle}' 在 '$haystack' 中首次出现的位置是:{$result}";
} else {
    echo "子字符串 '{$needle}' 在 '$haystack' 中没有找到。";
}
?>

输出:

子字符串 'WORLD' 在 'Hello, World!' 中首次出现的位置是:7

注意:stripos 函数不区分大小写,所以 “WORLD” 和 “world” 被认为是相同的字符串。

0
看了该问题的人还看了