From:             ar3121 at att dot com
Operating system: 
PHP version:      Irrelevant
PHP Bug Type:     Documentation problem
Bug description:  htmlentities example is incorrect.

Description:
------------
On the htmlentities function documentation page:

http://us2.php.net/htmlentities

Example 2262 is incorrect.  The function call with and without ENT_QUOTES
produces different results, but the documentation says they're the same.





Expected result:
----------------
<?php
$str = "A 'quote' is <b>bold</b>";

// Outputs: A 'quote' is &lt;b&gt;bold&lt;/b&gt;
echo htmlentities($str);

// Outputs: A &#039;quote&#039; is &lt;b&gt;bold&lt;/b&gt;
echo htmlentities($str, ENT_QUOTES);
?> 

Actual result:
--------------
<?php
$str = "A 'quote' is <b>bold</b>";

// Outputs: A 'quote' is &lt;b&gt;bold&lt;/b&gt;
echo htmlentities($str);

// Outputs: A 'quote' is &lt;b&gt;bold&lt;/b&gt;
echo htmlentities($str, ENT_QUOTES);
?> 

-- 
Edit bug report at http://bugs.php.net/?id=40405&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=40405&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=40405&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=40405&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=40405&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=40405&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=40405&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=40405&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=40405&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=40405&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=40405&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=40405&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=40405&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=40405&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=40405&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=40405&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=40405&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=40405&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=40405&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=40405&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=40405&r=mysqlcfg

Reply via email to