|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-04 17:59 UTC] sniper@php.net
[2002-07-05 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 01:00:01 2025 UTC |
in PHP 4.06: <?php echo "<hr>"; echo ":\0:"; echo "<hr>"; print ":\0:"; echo "<hr>"; ?> produces <hr> : (0x3A 0x00 0x3A) <hr> : (0x3A 0x00 0x3A) <hr> but in PHP 4.2.0 it produces <hr> : : (0x3A 0x20 0x3A) <hr> : : (0x3A 0x20 0x3A) <hr> why it is so? and how can I print non-printable characters like \0 via PHP?