Matt Elhotiby
Matt Elhotiby

Reputation: 44086

getting rid of the ending of the url

I am using php and i want the part of the url without the /floor-plans/dsafasd so i want something/whatever

instead of

something/whatever/floor-plans/dsafasd

Upvotes: 0

Views: 122

Answers (2)

mvds
mvds

Reputation: 47134

$url = preg_replace("#/floor-plan.*#i","",$url);

should do the trick then.

Upvotes: 3

Don
Don

Reputation: 1570

If you're just trying to remove "floor-plans" you could use str_replace().

If it's always the 6th item in the URL, you could explode the url inton an array and then reassemble the pieces you'd like (removing the 5th item in this case since you start a 0 = "wiki")

If it's a regex thing, you'll need to provide more or a pattern to help someone build it...

Upvotes: 0

Related Questions