如何在php中的特定字符后修剪字符串

时间:2016-04-15 12:53:48

标签: php trim

我是PHP的新手,我在变量中保存了一些文本。我正在尝试检索第一个'/'字符后面的文本。这是我试过的。

$var="xxxxx/ttt/tttt/tttt.txt";
echo $str . "<br />";
echo trim($str,"/");

输出必须为ttt/tttt/tttt.txt。 如果我能得到一些帮助,我将非常感激。谢谢。

2 个答案:

答案 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;