我有這個字符串如何在php中刪除部分字符串?
NOTEBOOK > ABC
TABLET > DFG
我想刪除一切後 '>' 包括 '>'
我想這
$category = substr($categoryGet,0,strrpos($categoryGet.">",">"));
沒有結果到目前爲止
我有這個字符串如何在php中刪除部分字符串?
NOTEBOOK > ABC
TABLET > DFG
我想刪除一切後 '>' 包括 '>'
我想這
$category = substr($categoryGet,0,strrpos($categoryGet.">",">"));
沒有結果到目前爲止
$str="NOTEBOOK > ABC
TABLET > DFG";
$x=explode("\n",$str); //break by lines
foreach($x as $y){
$k=explode('>',$y);
echo trim($k[0]); //or that ever form you want the output to be
}
在換行符上爆炸,然後在「>」上爆炸 – nogad
爲什麼要將'>>「'連接到字符串?它總能找到你添加的字符,而不是字符串中的字符。 – Barmar