检索包含单引号的字符串:不打印引号

时间:2012-01-31 18:32:28

标签: mysql html

我从mysql数据库中获取字段的值。这个值在双方都有单引号,如:'foo'。

当我使用html模板中的PHP方法检索数据时,我得到了这段代码:

'foo'

但我希望它只显示'foo'(带引号)。

有什么想法吗?

哈维尔

2 个答案:

答案 0 :(得分:1)

'apostrophe-quote的ASCII代码。

如果使用PHP,请在数据库中显示的数据周围使用html_entity_decode()

即。 echo html_entity_decode($ database_field_data);

http://www.php.net/manual/en/function.html-entity-decode.php

答案 1 :(得分:0)

使用str_replace。

echo str_replace("'" , "'" , $data['string']);