vote up 1 vote down star

Hey everyone,

I have a full path which I would like to remove certain levels of it. So for instance,

/home/john/smith/web/test/testing/nothing/

I would like to get rid of 4 levels, so I get

/test/testing/nothing/

What would be a good of doing this?

Thanks

flag

2 Answers

vote up 6 vote down check

A simple solution is to slice the path up into parts, and then manipulate the array before sticking it back together again:

join("/", array_slice(explode("/", $path), 5));

Of course, if you wanted to remove that specific path, you could also use a regular expression:

preg_replace('~^/home/john/smith/web/~', '', $path);

One word of advice though. If your application is juggling around with paths a lot, it may be a good idea to create a class to represent paths, so as to encapsulate the logic, rather than have a lot of string manipulations all over the place. This is especially a good idea, if you mix absolute and relative paths.

link|flag
Why would you use a needless regular expression? str_replace will do this fine, there is no pattern matching at all! – Jay Dec 16 '08 at 12:46
1  
Because it's rooted. str_replace will match anywhere in the string, while a regexp which starts with ^ will match only if the string begins with the pattern. – troelskn Dec 16 '08 at 12:56
Who said he wanted to do that, he wanted to remove parts of the string? Quit giving negative votes simply due to the fact you disagree and aren't willing to step down from your pedestal. – Jay Dec 16 '08 at 13:13
1  
Quit being childish - It's not pretty. – troelskn Dec 16 '08 at 22:06
Instead of using / it may be best to use the more portable PATH_SEPARATOR constant – ejunker Dec 21 '08 at 6:07
vote up -2 vote down

Why are you all using regular expressions for something that requires absolutely no matching; CPU cycles are valuable!

str_replace would be more efficient:

$s_path = '/home/john/smith/web/test/testing/nothing/';
$s_path = str_replace('john/smith/web/test/', '', $s_path);

And use realpath() to resolve any '../../' paths.

And remember dirname(__FILE__) gets the CWD and rtrim() is extremely useful for removing trailing slashes..

link|flag
1  
Your solution(s) only works for some subset of valid input. Besides, what makes you think str_replace performs better than a rooted regexp? Did you actually measure the difference? If you did, you would find that the difference is diminutive – troelskn Dec 16 '08 at 13:09
Maybe once sure, but in a loop it is cumulative. – Jay Dec 16 '08 at 13:12
Still not important. preg is very efficient. Try measuring it - You'd be surprised. – troelskn Dec 16 '08 at 22:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.