(PHP 5, PHP 7)
substr_compare — 二进制安全比较字符串(从偏移位置比较指定长度)
定义和用法
substr_compare() 函数从指定的开始位置比较两个字符串。
提示:该函数是二进制安全且选择性地对大小写敏感。
语法
substr_compare(string1,string2,startpos,length,case)
参数 | 描述 |
---|---|
string1 | 必需。规定要比较的第一个字符串。 |
string2 | 必需。规定要比较的第二个字符串。 |
startpos | 必需。规定在 string1 中的何处开始比较。如果为负数,则从字符串末端开始计数。 |
length | 可选。规定对 string1 中的多少字符进行比较(字符数)。 |
case |
可选。布尔值,规定是否执行区分大小写的比较:
|
范例
Example #1 substr_compare() 范例
<?php
echo substr_compare("abcde", "bc", 1, 2); // 0
echo substr_compare("abcde", "de", -2, 2); // 0
echo substr_compare("abcde", "bcg", 1, 2); // 0
echo substr_compare("abcde", "BC", 1, 2, true); // 0
echo substr_compare("abcde", "bc", 1, 3); // 1
echo substr_compare("abcde", "cd", 1, 2); // -1
echo substr_compare("abcde", "abc", 5, 1); // warning
?>