|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-07-26 14:02 UTC] balezin at yandex dot ru
-Summary: error in assign variable
+Summary: error in the assigning integer values for the
variables
-Type: Documentation Problem
+Type: Bug
[2011-07-26 14:02 UTC] balezin at yandex dot ru
[2011-07-26 14:25 UTC] bjori@php.net
-Status: Open
+Status: Bogus
[2011-07-26 14:25 UTC] bjori@php.net
[2011-07-27 10:19 UTC] balezin at yandex dot ru
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 16:00:02 2025 UTC |
Description: ------------ # php --version PHP 5.3.6 with Suhosin-Patch (cli) (built: Jul 21 2011 10:37:27) Copyright (c) 1997-2011 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies Hi! I found PHP error in the process assigning for integer variables. Test script: --------------- $a1=02; $a2=2; $a3=09; $a4=9; print("$a1, $a2, $a3, $a4"); Expected result: ---------------- 2, 2, 9, 9 Actual result: -------------- 2, 2, 0, 9