[PHP-DOC] Re: [PHP-DEV] Re: Behaviour of $array1 + $array2

2002-01-11 Thread Markus Fischer
I filled a bug report (doc problem) now. -- Please always Cc to me when replying to me on the lists.

[PHP-DOC] Re: [PHP-DEV] Re: Behaviour of $array1 + $array2

2002-01-11 Thread Philip Olson
Here's an example of related activities (4.1.1): '4 a', 2 => '2 a', 'foo' => 'foo a'); $b = array(4 => '4 b', 1 => '1 b', 'foo' => 'foo b'); $c['plus'] = $a + $b; $c['merge']= array_merge($a,$b); $c['merge_recursive'] = array_merge_recursive($a,$b); $c['concat

[PHP-DOC] Re: [PHP-DEV] Re: Behaviour of $array1 + $array2

2002-01-10 Thread Markus Fischer
On Fri, Jan 11, 2002 at 01:28:32PM +0900, Yasuo Ohgaki wrote : > Markus Fischer wrote: > > >On Thu, Jan 10, 2002 at 05:58:28PM -0700, Zak Greant wrote : > > > >>On 2002-10-01 17:33, Yasuo Ohgaki wrote: > >> > >>>Markus Fischer wrote: > >>> > Can someone point me where the following behaviou

[PHP-DOC] Re: [PHP-DEV] Re: Behaviour of $array1 + $array2

2002-01-10 Thread Yasuo Ohgaki
Markus Fischer wrote: > On Thu, Jan 10, 2002 at 05:58:28PM -0700, Zak Greant wrote : > >>On 2002-10-01 17:33, Yasuo Ohgaki wrote: >> >>>Markus Fischer wrote: >>> Can someone point me where the following behaviour is documented: $ php -q >>>$foo = array(27 => 'Ene');