Jump to content

[SOLVED] help just explain the small simple code I got....


DanDaBeginner

Recommended Posts

hello all, I got this code from a site....

 

$data = preg_replace("`[url=(.*)](.*)[/url]`sUi","<a href='\1'>\2</a>",$data); 

 

now my question is what is the \1 and \2 in "<a href='\1'>\2</a>".. I believe its the code that says keep the value... can anybody please explain to me or can lead me to a tutorial that explains this... thanks..

 

Link to comment
Share on other sites

I think this should be the write one to write,

$data = preg_replace('/\[url=(.*)\](.*)\[\/url\]/sUi', '<a href="$1">$2</a>', $data);

 

[, ] and / need to be escape, the first (.*) and second (.*) present $1 and $2 respectively.

Link to comment
Share on other sites

when you place parentheses within a regular expression, it indicates a portion of the expression that you'd like to capture and use in the replacement.  \1 or $1 can be used for the respective captured subpattern in the replacement string.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.