PHP 中的 html entity decode函数

首页 / PHP入门教程 / PHP 中的 html entity decode函数

html entity decode - 语法

string html_entity_decode ( string $string [, int $flags=ENT_COMPAT | ENT_HTML401 
   [, string $encoding=ini_get("default_charset") ]] )

它用于将HTML实体转换为其应用程序字符

Sr.No 参数 & Description
1

string

它包含有关输入字符串的信息

无涯教程网

2

flags

链接:https://www.learnfk.comhttps://www.learnfk.com/php/php-function-html-entity-decode.html

来源:LearnFk无涯教程网

它包含有关标志的信息

html entity decode - 返回值

它返回解码后的字符串。

html entity decode - 示例

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

这将产生以下输出--

tutorials "point" simply <b>easy</b> learning

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

面试现场 -〔白海飞〕

透视HTTP协议 -〔罗剑锋(Chrono)〕

讲好故事 -〔涵柏〕

程序员的个人财富课 -〔王喆〕

程序员的测试课 -〔郑晔〕

快手 · 移动端音视频开发实战 -〔展晓凯〕

大型Android系统重构实战 -〔黄俊彬〕

结构写作力 -〔李忠秋〕

AI大模型系统实战 -〔Tyler〕

好记忆不如烂笔头。留下您的足迹吧 :)