Jump to content

What did I do wrong?


KingOfHeart

Recommended Posts

function HTMLToBBCode($message)
{
    $html = array(
    '/\<span class="ozentity">/'         => "[color=#E25500]",
    '/\<span class="ozkey">/'         => "[color=#0000FF]", 
    '/\<span class="ozquote">/'         => "[color=#303030]",    
    '/\</span>/'         => "[/color]",
    );
    $message = preg_replace(array_keys($html), array_values($html), $message);//line 27
    return $message;
}  

 

Warning: preg_replace() [function.preg-replace]: Unknown modifier 'p' in /home/thegamin/public_html/openzelda/Admin/ozcode.php on line 27

So what mistake did I make?

Link to comment
https://forums.phpfreaks.com/topic/229070-what-did-i-do-wrong/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.