我要刪除文本中最後一個字符..
例如
我的字符串:example text
二: example tex
怎麼樣?
我要刪除文本中最後一個字符..
例如
我的字符串:example text
二: example tex
怎麼樣?
使用substr
,它獲取原始字符串的一個子:
$str = 'example text';
$newStr = substr($str, 0, -1); // "example text"
0
意味着「從頭開始」,-1
意思是「去,直到結束前一個字符」。
使用本
substr($string, 0, -1);
簡單,開門見山
$str[strlen($str) - 1] = '';
貴的東西。
字符串實際上是php中的一個字符數組。因此可以將最後一個索引設置爲空字符串。 使用unset()
會更好,但PHP不允許取消設置字符串索引。
請先搜索之前詢問 - http://www.google.com/search?q=remove+last+character+of+string+php –
我搜查,但我無法找到這個:( – Yusuf
@湯姆[請不要'將用戶引導至Google頁面](http://meta.stackexchange.com/questions/5280/embrace-the-non-googlers)和[請勿使用鏈接縮寫](http://meta.stackexchange.com/questions/64450/ban-url-shorting-services)。 – lonesomeday