Re: [PHP] PHP: array with null shows different with print_r and var_dump

2008-04-02 Thread Robert Cummings
On Wed, 2008-04-02 at 12:19 +0530, Sanjay Mantoor wrote: > 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] =>

Re: [PHP] PHP: array with null shows different with print_r and var_dump

2008-04-01 Thread Casey
On Tue, Apr 1, 2008 at 11:49 PM, Sanjay Mantoor <[EMAIL PROTECTED]> wrote: > 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 > ( >

[PHP] PHP: array with null shows different with print_r and var_dump

2008-04-01 Thread Sanjay Mantoor
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