开发者

Strip out all single quotes

I am looking for the best way to strip single quotes as it keeps breaking my important.

so

The image’s emotiveness enables

only comes through as

The image

It breaks at the single quote ' .I need a good way to strip out the tags can someone help.

I have looked at stripslashes();

Whats the best way function to stripout , - £

any help please.

MANAGED TO FIX IT>

Thank you for your help people i manage to fix it using the following function.

string utf8_encode ( string $data )

Cant figure out why it开发者_如何学Go was coming out in that format from the database all i can think is it 6 years old website.

;)


I'm not 100% certain because PHP isn't my forte, but I think you need to look at something like urlencode(). This will encode all the special characters properly.


Note: This will remove all single quotes!

str_replace("'", "", $your_string);

example:

$your_string = "The image’s emotiveness enables.";
echo str_replace("'", "", $your_string);

output

The images emotiveness enables.

If you want to keep single quotes in string you should consider using real escape functions (recommended).


It sounds like what you really want is to encode the single quotes, not remove them. On the assumption that you are inserting into the MySQL database, look into mysql_real_escape_string.


The best way to get rid of specific characters is using str_replace.

To remove all single quotes from a string:

$noQuotes = str_replace("'", '', $stringWithQuotes);


There is several ways, depending on what are you doing.

You could use addslashes to escape all single / double quotes. You can unescape it with stripslashes later.

If you are planning on saving those data into MySQL database, you should use mysql_real_escape_string.

If you want to output data on HTML page, use htmlspecialchars to convert all special characters into HTML entities.

The next way is to use str_replace to remove all quotes, as few other people in this thread already mentioned.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜