(PHP 4, PHP 5, PHP 7, PHP 8)
strcspn — 獲取不匹配遮罩的起始子字符串的長度
$str1
,$str2
,$start
= ?,$length
= ?
返回 str1
中,所有字符都不存在于 str2
范圍的起始子字符串的長度。
str1
第一個字符串。
str2
第二個字符串。
start
查找的起始位置。
length
查找的長度。
以整型數(shù)返回子串的長度。
示例 #1 strcspn() example
<?php
$a = strcspn('abcd', 'apple');
$b = strcspn('abcd', 'banana');
$c = strcspn('hello', 'l');
$d = strcspn('hello', 'world');
var_dump($a);
var_dump($b);
var_dump($c);
var_dump($d);
?>
以上例程會輸出:
int(0) int(0) int(2) int(2)
注意: 此函數(shù)可安全用于二進制對象。