PHP 函数 html_entity_decode
PHP 函数 html_entity_decode
<?php
$input = "tutorials \"point\" simply <b>easy</b> learning";
$ab = htmlentities($input);
$b = html_entity_decode($ab);
echo $ab;
?>
<?php
$input = "tutorials \"point\" simply <b>easy</b> learning";
$ab = htmlentities($input);
$b = html_entity_decode($ab);
echo $ab;
?>