我是PHP的新手,我在变量中保存了一些文本。我正在尝试检索第一个'/'字符后面的文本。这是我试过的。
$var="xxxxx/ttt/tttt/tttt.txt";
echo $str . "<br />";
echo trim($str,"/");
输出必须为ttt/tttt/tttt.txt
。
如果我能得到一些帮助,我将非常感激。谢谢。
答案 0 :(得分:0)
您可以尝试使用爆炸功能
$var="xxxxx/ttt/tttt/tttt.txt";
$split = explode('/', $var,2); // it will expload by first occurance of / (delimeter)
//$split[0] will contain "xxxxx"
echo $split[1]; // output = ttt/tttt/tttt.txt
答案 1 :(得分:0)
根据重复,这是你的答案:
$data = "xxxxx/ttt/tttt/tttt.txt";
$whatIWant = substr($data, strpos($data, "/") + 1);
echo $whatIWant;