blazextreme
New Member
I created a php (5.2.6) function simple as is:file a.php:\[code\]function la ($n) { echo "$n";}\[/code\]file b.php:\[code\]include ('a.php');// got many calls of function with leading zero in parameterla (01);la (02);...la (07);la (08);la (09);la (10);\[/code\]Sometimes it prints 1, 2... 9, 10, sometimes it prints 0 instead 8 or 9! Looks random. Why? Why only 8 or 9?Indeed, I can avoid this zero. But, since I found strange behaviour, I want to ask you: what is the secret of this weird behaviour? Or I am weird. Thank you.