htmlspecialchars_decode()
functionYou can use the PHP htmlspecialchars_decode()
function to convert the special HTML entities such as &
, <
, >
etc. back to the normal characters (i.e. &
, <
, >
).
The htmlspecialchars_decode()
function is opposite of the htmlspecialchars()
function which converts special HTML characters into HTML entities. Let's check out an example:
<?php
$my_str = "I'll come & <b>"get you"</b>.";
// Decode &, <, > and "
echo htmlspecialchars_decode($my_str);
// Decode &, <, >, " and '
echo htmlspecialchars_decode($my_str, ENT_QUOTES);
// Decode &, < and >
echo htmlspecialchars_decode($my_str, ENT_NOQUOTES);
?>
i hope you like this one.
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
How to Submit a Form Using jQuery
Use the jQuery submit() Method You ca...jQuery add content at the beginning of selected element using prepend
In the previous article, we have discuss...How to Create Multiline Strings in JavaScript
Use String Concatenation You can use...How to Replace innerHTML of a Div using jQuery
Use the jQuery html() Method You can...Create a bootable USB stick on Ubuntu
To install operating system, first you n...