06/04/2021, 14:46

Hàm html_entity_decode() trong PHP - PHP Function

$html="<html> <head><head>something like this </html>"; $str = htmlentities( $html, ENT_COMPAT, 'UTF-8')."<br />"; $htmlentity = htmlentities( $str, ENT_COMPAT, 'UTF-8'); $str = html_entity_decode($htmlentity); echo $htmlentity . "<br >"; echo $str. ...

Hàm html_entity_decode() sẽ chuyển đổi các kí hiệu HTML entities thành các kí tự tương ứng.

Hàm html_entity_decode() có tác dụng ngược lại so với hàm htmlentities().

Cú pháp

Cú pháphtml_entity_decode( $str);

Trong đó:

  • $str là chuỗi chứa các kí hiệu HTML entities cần được chuyển đổi.

Ví dụ

$html="<html> <head><head>something like this   </html>";
$str = htmlentities( $html, ENT_COMPAT, 'UTF-8')."<br />";
$htmlentity = htmlentities( $str, ENT_COMPAT, 'UTF-8');

$str = html_entity_decode($htmlentity);

echo $htmlentity . "<br >";
echo $str. "<br >";

Kết quả
&lt;html&gt; &lt;head&gt;&lt;head&gt;something like this &lt;/html&gt;<br />
<html> <head><head>something like this </html>

Tham khảo: php.net

Nguồn: Zaidap.com.net

Tạ Quốc Bảo

23 chủ đề

7270 bài viết

Cùng chủ đề
0