Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to remove some parameters from a URL using PHP preg_replace(). For example, i need to remove a[]=1 from the bellow URL.

$my_url = 'www.myhost.com/filter.php?a[]=1&a[]=12&a[]=13&a[]=14'

So i am using:

$without_filter = preg_replace("/(&)?a\[\]=1/", '', $my_url);

I want to remove only a[]=1, but it is removing the portion that contains a[]=1 from the others parameters, so am i getting:

www.myhost.com/filter.php?234

Someone can help me to solve this?

share|improve this question
you could probably add a \b at the end to specify a "boundary" is needed. boundary=non word character or end of line/string. – Jonathan Kuhn Jan 29 at 19:20
for something this specific you can also use str_replace, which is good if it's a static/simple match you're looking to do. – DaOgre Jan 29 at 20:33

3 Answers

up vote 3 down vote accepted

What about: /a\[\]=1(&|\b)/

That way it will capture a[]=1 only if it is followed by a & or end of string.

share|improve this answer
Hmm... say the url is: example.com/abc?foo=bar&a[]=1 then we'll have a trailing & left. – songyy Jan 29 at 19:44
It works, thanks! – Marcio Simao Jan 29 at 19:48
@songyy, You are wrong, if i have a[]=12&a[]=1&a[]=13&a[]=14 i will get a[]=12a[]=13&a[]=14. Note that a[]=12a[]=13 don't have the & separator, so we will lose its content. The previor answer have a & at the end of the string, but it works normally. – Marcio Simao Jan 29 at 19:53
1  
@songyy, If you use the ER /(&?)a\[\]=1(&|\b)/ you will get this error, so the best ER is /a\[\]=1(&|\b)/ – Marcio Simao Jan 29 at 19:56
1  
@MarcioSimao Sorry a bit too many comments I'm giving here... I'm thinking then probably just /a[]=1(&|$)/ ? Cuz the \b would include chars like '=' also (or other non-word chars)... which might appear in the url – songyy Jan 29 at 20:08
show 2 more comments

Following the man page of preg_replace you may do something like this:

$without_filter = preg_replace("/\&(a\[\]=1)(\&|$)/", '\2', $my_url);

Or... you can always use preg_replace_callback

share|improve this answer
You gave a nice tip, but even remaining a & at the end of the string, the URL works in the browser. So i think the @Supericy answer is more simple. – Marcio Simao Jan 29 at 19:49
@MarcioSimao Ahh... I forgot this ~:) Thx :) – songyy Jan 29 at 19:51

Use the $limit parameter of preg_replace and set it to 1, this should replace it only once. Assuming that your parameters are always sorted this way:

$without_filter = preg_replace("/(&)?a\[\]=1/", '', $my_url, 1);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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