當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP htmlentities()用法及代碼示例


PHP htmlentities() 函數是字符串函數,用於將字符轉換為 HTML 實體。

用法:

htmlentities(string,flags,character-set,double_encode);
參數 描述 必需/可選
String 指定要轉換的字符串。 required
flags 指定如何管理引號,無效編碼。 optional
Character 指定字符集 optional
Double_encode 指定一個布爾值。 optional

例子1

<?php
$str = '<a href="https://www.javatpoint.com">Go to javatpoint.com</a>';
echo htmlentities($str);
?>

輸出:

例子2

<?php
$str = "Hello PHP:'E=MC?'";
echo htmlentities($str, ENT_COMPAT); // Will only convert double quotes
echo "<br>";
echo htmlentities($str, ENT_QUOTES); // Converts double and single quotes
echo "<br>";
echo htmlentities($str, ENT_NOQUOTES); // Does not convert any quotes
?>

輸出:

Hello PHP:'E=MC˛'
Hello PHP:'E=MC˛'
Hello PHP:'E=






相關用法


注:本文由純淨天空篩選整理自 PHP htmlentities() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。