Bir PHP dizi kullanımdan önce ilan edilmesi gerekiyor mu?

0 Cevap php

Yeni bir uygulama yazarken ben yanlışlıkla bunu ilan etmişti önce bir dizi doldurarak başladı.

error_reporting ( E_ALL);  
$array['value'] = 'Test string';

I use E_ALL error reporting and an error was not thrown. Is this correct? And if so, are there any issues with declaring array values whilst never declaring the actual array? Perhaps it just doesn't follow good programming standards.

0 Cevap