Re: [PHP-DEV] Re: var_export() and arrays

2002-09-08 Thread Andi Gutmans
At 02:48 PM 9/4/2002 +0900, Yasuo Ohgaki wrote: >Sebastian Bergmann wrote: >> > $array = array('foo', 'bar'); >> var_export($array); >> ?> >> prints >> array ( >> 0 => 'foo', >> 1 => 'bar', >> ) >> The comma after 'bar' is superfluous. > >I agree, but it has

[PHP-DEV] Re: var_export() and arrays

2002-09-03 Thread Yasuo Ohgaki
Sebastian Bergmann wrote: > $array = array('foo', 'bar'); > var_export($array); > ?> > > prints > > array ( > 0 => 'foo', > 1 => 'bar', > ) > > The comma after 'bar' is superfluous. > I agree, but it has been discussed recently. Derick added extra , si