1 2 3 4 5 6 |
$html = "<img src='/media/20080705.gif' />"; $html1 = htmlspecialchars($html); $html2 =htmlspecialchars_decode($html1); echo $html1; 表示結果:<img src='/media/20080705.gif' /> echo $html2;<img src="/media/20080705.gif"> |