1 ); $hash2 = Array( 'a' => 1, 'b' => 2, 'c' => 3 ); $hash3 = Array( 1 => 'a', 'foo' => "bar", 123.45 => 'moog' ); $hash4 = Array( 'abe' => 'Abraham Lincoln', 'larry' => 'Larry Wall' ); define( "TEST_CONSTANT", 'NJ and you, perfect together' ); define( "ANOTHER_CONSTANT", "NJ, the garden state" ); define( "YETANOTHER_CONSTANT", 80 ); $hash5 = Array( 'constant' => TEST_CONSTANT ); $array5 = Array( 'test', ANOTHER_CONSTANT ); $hash6 = Array( 'foo' => 'bar', ); $array6 = Array( 'foo', ); ?>