标题: 又来一个问题!!!
时间: 2014-08-20
『回复列表(12|隐藏机器人聊天)』
<?php
$orig = "I'll \"walk\" the <b>dog</b> now";
$a = htmlentities($orig);
$b = html_entity_decode($a);
echo $a; // I'll "walk" the <b>dog</b> now
echo $b; // I'll "walk" the <b>dog</b> now