ID:          33037
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:      Open
+Status:      Feedback
-Bug Type:    Documentation problem
+Bug Type:    Livedocs problem
 PHP Version: Irrelevant
 New Comment:

Its a livedocs problem.
Could you please try my ancient patch mentioned in #30440 ?


Previous Comments:
------------------------------------------------------------------------

[2005-05-16 03:52:27] [EMAIL PROTECTED]

Description:
------------
reference/strings/functions/htmlspecialchars-decode.html

Ok, look at the example in livedocs what it outputs..., the output is
the same... (check example too).
I don't really know if it is a doc bug or a livedocs bug.
Feel free to redirect this bug to Livedocs...

Perhaps the output will be great on php.net, i don't know ?!

Expected result:
----------------
<?php
$str = '<p>this -&gt; &quot;</p>';

echo htmlspecialchars_decode($str);

// notez ici que les guillemets ne sont pas convertis
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
?> 

<p>this -> "</p>
<p>this -> &quot;</p>

Actual result:
--------------
<?php
$str = '<p>this -&gt; "</p>';

echo htmlspecialchars_decode($str);

// notez ici que les guillemets ne sont pas convertis
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
?> 

<p>this -> "</p>
<p>this -> "</p>


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=33037&edit=1

Reply via email to