Ben sadece şimdiye kadar benim kısa geliştirici hayatta karşılaştığımız tuhaf 'hata' ile karşılaştı düşünüyorum. Ben sadece herhangi bir değişkene değer atamak sekiz olamaz gibi görünüyor. Exemple:
<?php
$seven = 07;
$eight = 08; //what's wrong here?
$sevenB = 7;
$eightB = 8;
echo $seven;
echo $eight;
echo $sevenB;
echo $eightB;
?>
Çıktısı:
7078
The debugger in NetBeans tells me 0 is assigned to $eight, while the other variables are fine. If I remove the zeroes before the values, eight gets assigned, but as soon as this variable is used in a constructor, then it's replaced by zero again. WTF?
Here's my config: WAMP 2.0g, PHP 5.2.9, Apache 2.2.11, NetBeans 6.7.1. Disabling Xdebug (2.05) doesn't change a thing.
Kim bu tutarsız davranışı sorumludur? Bunu düzeltmek için?
Yardımlarınız için teşekkürler!