|
PHP5中文手册
htmlspecialchars_decode(PHP 5 >= 5.1.0) htmlspecialchars_decode — Convert special HTML entities back to characters 说明
string htmlspecialchars_decode
( string $string
[, int $quote_style
] )
This function is the opposite of htmlspecialchars(). It converts special HTML entities back to characters. The converted entities are: &, " (when ENT_NOQUOTES is not set), ' (when ENT_QUOTES is set), < and >. 参数
返回值Returns the decoded string. 范例
Example#1 A htmlspecialchars_decode() example
<?php 上例将输出:
|