欢迎访问藏葵网!互联网技术知识分享交流平台,如需帮助请联系在线客服!

建站教程

Website Building Tutorial

PHP截取字符前后面的字符串

更新:2025-03-13 13:34:38 来源: 整理:藏葵网 点击:

截取字符后面的内容  

strripos函数获取&字符串后面的内容

$number = '1111&0123456';
$result = substr($number,strripos($number,"&")+1);
echo $result;

输出0123456  

截取字符前面的内容  

strripos函数获取&字符串前面的内容

$test = '1111&0123456';
$result = substr($test,0,strrpos($test,"&"));
echo $result;

输出1111

加入收藏 返回顶部
搜索 帮助 投诉 顶部