php使用substr()和strpos()联合查找字符串中某一特定字符的方法
本文实例讲述了php使用substr()和strpos()联合查找字符串中某一特定字符的方法。分享给大家供大家参考。具体分析如下:
要求:在下面的字符串中查找双竖线前面的字符,大多数清空下使用explode()函数,但项目过程中使用了太多的explode(),所以找到了下面的方法。
<?php $str="admin||46cc468df60c961d8da2326337c7aa58||0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"; echo substr($str,0,strpos($str,"||")); ?>
输出内容为admin。
substr()具体描述://www.jb51.net/w3school/php/func_string_substr.htm
strpos()具体描述://www.jb51.net/w3school/php/func_string_strpos.htm
希望本文所述对大家的php程序设计有所帮助。
相关推荐
resilient 2019-11-04
eroshn 2020-06-21
softwear 2020-08-21
sunzhihaofuture 2020-06-21
tanrong 2020-04-20
luckymaoyy 2020-04-08
herohope 2020-03-27
liuyang000 2019-12-30
niuyisheng 2013-06-29
缘起宇轩阁 2019-12-21
云之飞踢 2019-12-18
heray0 2019-12-07
哆来咪er 2019-11-19
东辉在线 2019-11-05