我有一个特殊情况,我在一个数组中有一系列不同的字符串。
我需要的是在第三次出现/.// p>时删除字符串的最后一部分
示例:
配件/男士配件/手袋钱包/斜挎包/
所以我想删除:信使包/
PHP如何实现这一点 - 记住我有很多不同的字符串!所以我不能每次都采取不同的立场。
答案 0 :(得分:1)
AuthenticationFailureResult
//Here you will have 4 elements
$parts = explode ('/', $string);
//this will glue the first 3 elements
list ($first, $second, $third) = $parts;
//Here you can see the desired result
var_dump (implode ('/',array($first, $second, $third)));