<?php
$array = array('foo', 'bar');
var_export($array);
?>
prints
array (
0 => 'foo',
1 => 'bar',
)
The comma after 'bar' is superfluous.
--
Sebastian Bergmann
http://sebastian-bergmann.de/ http://phpOpenTracker.de/
Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php
