On Mon, 2003-12-01 at 00:33, Curt Zirzow wrote:
> * Thus wrote [EMAIL PROTECTED] ([EMAIL PROTECTED]):
> > $array['ojpp'][1][][] = 'ferrer';
> > $array['test'][0] = 'ojpp';
> > $array['test'][1] = 'ferrer';
> > 
> > How could I do a script that give me this output:
> > 
> > Array
> > (
> >     [0] => Array
> >         (
> >             [0] => ojpp
> >             [1] => 1
> >             [2] => 0
> >             [3] => 0
> >         )

If I understand correctly you want:

    print_r( $array );

Cheers,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to