編碼的世界 / 優質文選 / 文明

php截取特定字符前面和後面的內容


2022年7月01日
-   

本文轉載自:https://www.cnblogs.com/zhengdongdong/p/9603382.html
1、php 截取特定字符後面的內容
可以使用函數strripos,獲取一個字符串在另一個字符串中第一次出現的位置。
$number = '1_0';
$result = substr($number,strripos($number,"_")+1);
echo $result;

該程式輸出0
2、php 截取特定字符前面的內容 可以使用函數strrops,獲取一個字符串在另一個字符串中最後一次出現的位置。
$test = '1_0';
$result = substr($test,0,strrpos($test,"_"));
echo $result;

該程式輸出1

熱門文章