|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-01-17 21:52 UTC] pluggz24 at yahoo dot com
[2004-01-18 05:31 UTC] helly@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 05:00:01 2025 UTC |
Description: ------------ This is very simple too understand from the example code,passing 08 or 09 results in 0..... Errr umm... what the?! Thanks Reproduce code: --------------- <?php function p($val) { echo "$val<br/>"; } p(01); p(05); p(08); p(09); ?> Expected result: ---------------- 1<br/>5<br/>8<br/>9<br/> Actual result: -------------- 1<br/>5<br/>0<br/>0<br/>