Since we've had several answers, I decided to test them all and benchmark them.
I used this paths to test:
$from = "/var/www/sites/web/mainroot/webapp/folder/sub/subf/subfo/subfol/subfold/lastfolder/"; NOTE: if it is a folder, you have to put a trailing slash for functions to work correctly! So, __DIR__ will not work. Use __FILE__ instead or __DIR__ . '/'
$to = "/var/www/sites/web/mainroot/webapp/folder/aaa/bbb/ccc/ddd";
RESULTS: (decimal separator is comma, thousand separator is dot)
- Function by Gordon: result CORRECT, time for 100.000 execs 1,222 seconds
- Function by Young: result CORRECT, time for 100.000 execs 1,540 seconds
- Function by Ceagle: result WRONG (it works with some paths but fails with some others, like the ones used in the tests and written above)
- Function by Loranger: result WRONG (it works with some paths but fails with some others, like the ones used in the tests and written above)
So, I suggest that you use Gordon's implementation! (the one marked as answer)
Young's one is good too and performs better with simple directory structures (like "a/b/c.php"), while Gordon's one performs better with complex structures, with lots of subdirectories (like the ones used in this benchmark).
NOTE: I write here below the results returned with $from and $to as inputs, so you can verify that 2 of them are OK, while other 2 are wrong:
- Gordon:
../../../../../../aaa/bbb/ccc/ddd --> CORRECT
- Young:
../../../../../../aaa/bbb/ccc/ddd --> CORRECT
- Ceagle:
../../../../../../bbb/ccc/ddd --> WRONG
- Loranger:
../../../../../aaa/bbb/ccc/ddd --> WRONG