strspn
函数是 PHP 中用于获取字符串中子字符串的起始位置的一个函数。它的语法如下:
strspn(string $subject, string $pattern[, int $start = 0]): int
参数说明:
$subject
:必需。字符串,要在其中搜索子字符串。$pattern
:必需。字符串,要搜索的子字符串。$start
:可选。整数,指定从 $subject
中的哪个位置开始搜索。默认值为 0。返回值:
返回子字符串在 $subject
中首次出现的位置。如果未找到子字符串,则返回 0。
示例:
<?php
$subject = "Hello, I am a PHP assistant.";
$pattern = "PHP";
$start = 7;
$result = strspn($subject, $pattern, $start);
echo "The position of the substring '{$pattern}' starting from position {$start} is: {$result}\n";
?>
输出:
The position of the substring 'PHP' starting from position 7 is: 14
在这个示例中,我们在字符串 “Hello, I am a PHP assistant.” 中从位置 7 开始搜索子字符串 “PHP”,并找到了它的起始位置 14。