PHP: array with null shows different with print_r and var_dump

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello,

I am new to PHP and PHP community.

Following program outputs different values with print_r and var_dump.

$array = array(null, NULL);

print_r($array); prints values like below
Array
(
    [0] =>
    [1] =>
)

where as var_dump($array) prints values like below
array(2) {
  [0]=>
  NULL    // Does this convert to null to NULL?
  [1]=>
  NULL
}

Can you tell me why the above difference?


-- 
Thanks,
Sanjay Mantoor

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux