ID:               32124
 User updated by:  daniel dot kauffman at rocksolidsolutions dot org
 Reported By:      daniel dot kauffman at rocksolidsolutions dot org
 Status:           Open
 Bug Type:         Output Control
 Operating System: WIN98
 PHP Version:      4CVS-2005-02-27 (stable)
 New Comment:

PHP is running as Apache module in each case.


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

[2005-02-27 11:19:06] daniel dot kauffman at rocksolidsolutions dot org

Description:
------------
Echo sometimes strips double-quotes from tags.

It seems impossible to echo the following string literal:

 <a " >

Tested on localhost with:

 PHP 4.3.11-dev as CGI with Apache 1.3.33 on Windows 98
 PHP 4.3.10 as CGI with Apache 1.3.33 on Windows 98

Tested remotely with:

 PHP 4.3.10 as CGI with Apache 1.3.33 on Linux kernal 2.4.28

Reproduce code:
---------------
# Echo strips double-quotes from these strings... (unexpected
behaviour)

echo '<a " >';
echo "<a \" >";


# But does not strip double-quotes from these strings... (exepected
behaviour)

echo '< " >';
echo "< \" >";

echo '<a a="" >';
echo "<a a=\"\" >";


# Character references are output as character references, not as
literal characters... (expected behaviour)

echo '< &quot; >';
echo '< &#34; >';

Expected result:
----------------
<a " ><a " >< " >< " ><a a="" ><a a="" >< &quot; >< &#34; >

Actual result:
--------------
<a  ><a  >< " >< " ><a a="" ><a a="" >< &quot; >< &#34; >


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


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

Reply via email to