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 have some HTML that is being run through PHP:

<a href="?char=">&</a>

and I'm wanting to use a preg_replace to replace the first & with a urlencoded value of it. However:

preg_replace("/char=\">(.*?)<\/a>/", "char=".urlencode("$1")."\">$1</a>", $links);

But this gives me the value $1, instead of the expected back-reference. How can I do what I'm trying to do (make the output look like <a href="?char=%26">&</a>)?

share|improve this question

2 Answers

up vote 3 down vote accepted

You can use the modifier e in your regexp or use the function preg_replace_callback (see the doc) instead.

share|improve this answer
2  
Note that when using /e, the replacement script fragment needs to be a string to prevent it from being interpreted before the call to preg_replace: preg_replace('/.../e', '"char=" . urlencode("$1") . "\\">$1</a>"', $links); – outis Nov 10 '09 at 20:06

Yes, both e modifier and preg_replace_callback function approaches can do the job.
I personally prefer one-line decision:

preg_replace("/char=\">(.*?)<\/a>/e", '"char=".urlencode("$1")."\\">$1"', $links);

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.