在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1. strstr string strstr ( string $needle 为字符串,如果不是字符串,那么转化为整型,使用该整型对应的字符。 返回 该字符(串)首次出现到字符串尾部分, 包括该字符(串)。 2. strrchr string strrchr ( string $needle为字符, 如果是字符串,使用字符串的首字符作为匹配字符(区别于其他几个函数对字符串情况的处理), 如果不是字符也不是字符串,则转化为整型,使用该整型对应的字符。 返回该字符最后一次出现到字符串尾部分, 包括该字符。 3. strpos int strpos ( string
返回某个字符串第一次出现的位置, 如果 4. strrpos 返回某个字符最后一次出现的位置, 如果 <?php $str = '[email protected]'; echo strstr($str,'qq.'); // 返回 qq.com echo "\n"; echo strrchr($str, 'ch'); // 返回 com 注意返回不是[email protected] echo "\n"; echo strpos($str, 'c'); //返回 7 echo "\n"; echo strrpos($str, 'c'); // 返回14
|
2022-08-30
2022-08-17
2022-11-06
2022-08-17
2022-07-29
请发表评论