第三次出现某些字符后删除部分字符串

时间:2015-09-29 20:57:24

标签: php

我有一个特殊情况,我在一个数组中有一系列不同的字符串。

我需要的是在第三次出现/.// p>时删除字符串的最后一部分

示例:

配件/男士配件/手袋钱包/斜挎包/

所以我想删除:信使包/

PHP如何实现这一点 - 记住我有很多不同的字符串!所以我不能每次都采取不同的立场。

1 个答案:

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