Jump to content

Preg_Replace not working..?


d22552000

Recommended Posts

One of my replacement scripts is not working, here is my php code:

 

  $_POST['message'] = preg_replace('/\[font=\"(.+?)\"\](.+?)\[\/font\]/',
   " <font face=\"$1\">$2</font>", $_POST['message']);

  $_POST['message'] = preg_replace('/\[color=\"(.+?)\"\](.+?)\[\/color\]/',
   " <font color=\"$1\">$2</font>", $_POST['message']);

 

When I feed it this:

 

[font="Courier"][color="Yellow"]test[/color][/font]

 

It shows the string as is, and does not evaluate my replacement.  Is there something wrong with my pattern?  All of my other ones have worked like links, images, and b, i, u, but these two above don't work.  I tried it both WITH escaping the " and one WITHOUT escaping the " and still it doesn't process it.  I know the script is going through these lines as I tried putting an echo between them, and the echo is shown.

 

Please tell me what is wrong.

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.