php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #61081 ++
Submitted: 2012-02-14 14:07 UTC Modified: 2012-02-14 16:14 UTC
From: fkienhoefer at online dot de Assigned:
Status: Not a bug Package: *General Issues
PHP Version: 5.4.0RC7 OS: Win 7
Private report: No CVE-ID: None
 [2012-02-14 14:07 UTC] fkienhoefer at online dot de
Description:
------------
Gibt 11 aus.

Test script:
---------------
<?php
$a = "0xa";

while ($a++ < "zzz") {
	echo "$a<br />";
}

?>


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-02-14 16:14 UTC] rasmus@php.net
Ja, genau wie wenn Sie dies getan haben: $a="10"; $a++; echo $a; 10 == "10" == "0xA" == 012 == "0b0101"
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed May 22 02:01:33 2024 UTC