标签:pos 使用 字符串函数 log span 注意 函数 rip 测试
mixed strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )
返回值
成功:返回 needle 存在于 haystack 字符串起始的位置(独立于 offset)
失败:如果没找到 needle,将返回 FALSE。
查找字符串首次出现的位置(不区分大小写)
mixed stripos ( string $haystack , string $needle [, int $offset = 0 ] )
计算指定字符串在目标字符串中最后一次出现的位置
mixed strrpos ( string $haystack , mixed $needle [, int $offset = 0 ] )
计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)
mixed strripos ( string $haystack , mixed $needle [, int $offset = 0 ] )
PHP字符串函数之 strpos stripos strrpos strripos
标签:pos 使用 字符串函数 log span 注意 函数 rip 测试
原文地址:http://www.cnblogs.com/echoshao/p/6513416.html