Jump to content

preg_replace and scapes problem


lagarto

Recommended Posts

I have this code:

----------

function preg_replacement_quote($str) {

    return preg_replace('/\'/', '', $str);

}

 

$phrase = preg_replace($search, $replace, preg_replacement_quote($phrase),  -1 , $count);

echo $phrase;

------------

This code work fine in my server localhost php 5.2.5, but in my godaddy hosting i have a problem, the php version in godaddy is the same 5.2.5 but when i print the variable $phrase, the code change the ' by a \ and i just need to remove the ' from any string.

 

Any suggestion?

 

Thxs

Link to comment
Share on other sites

Now is working, but i had to use to regex, why???? i don't know but is working.

 

$phrase  = str_replace('\'', '', $phrase);

$phrase = str_replace('\\', '', $phrase);

 

Thanks Jay6390 anyway i change to str_replace instead of preg_replace.

 

 

 

 

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.