我从mysql数据库中获取字段的值。这个值在双方都有单引号,如:'foo'。
当我使用html模板中的PHP方法检索数据时,我得到了这段代码:
'foo'
但我希望它只显示'foo'(带引号)。
有什么想法吗?
哈维尔
答案 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']);