What is the functionality of the function html entities?
Answers were Sorted based on User's Feedback
Answer / sunil biyani
Convert all applicable characters to HTML entities (PHP 3,
PHP 4 , PHP 5)
string htmlentities ( string string [, int quote_style [,
string charset]] )
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / vijaya
htmlentities will convert all applicable characters to HTML
entities.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / tushar kumar kundan
The htmlentities() function converts characters to HTML
entities.
==============================================================
Optional. Specifies how to encode single and double quotes.
The available quote styles are:
* ENT_COMPAT - Default. Encodes only double quotes
* ENT_QUOTES - Encodes double and single quotes
* ENT_NOQUOTES - Does not encode any quotes
=============================================================
<?php
$str = "Jane & 'Tarzan'";
echo htmlentities($str, ENT_COMPAT);
echo "<br />";
echo htmlentities($str, ENT_QUOTES);
echo "<br />";
echo htmlentities($str, ENT_NOQUOTES);
?>
==========================================================
the output
Jane & 'Tarzan'
Jane & 'Tarzan'
Jane & 'Tarzan'
| Is This Answer Correct ? | 2 Yes | 0 No |
What is use of htmlspecialchars php?
What can php do?
Why using the htaccess file
What are the advantages and disadvantages of cascade style sheets?
Explain what is the difference between for and foreach?
How many types of session are there?
How do i explode this string '||25||34||73||94||116||128' i need to have a array like this array ( 0 => '25', 1 => '34', 2 => '73', 3 => '94', 4 => '116', 5 => '128' ) explode("||", $array); didnt work for me i get this array array ( 0 => '', 1 => '25', 2 => '34', 3 => '73', 4 => '94', 5 => '116', 6 => '128', )
What is csrf token and why it is required?
can any please tel me about "Expression Engine"
Why sessions are used in php?
How many data types are used by php?
what are the current or latest versions of LAMP ? Linux, Apache, MySql, PHP