Re: [PHP] PHP Complex Data Structures

2005-05-18 Thread Brent Baisley
I find PHP arrays easier than Perl's data structures. Probably because PHP just has arrays, there really is no differentiation between arrays (Perl @) and hashes (Perl %). And PHP references arrays the same way as variables ($), which may or may not be confusing. You could probably look at PHP

RE: [PHP] PHP Complex Data Structures

2005-05-17 Thread Jay Blanchard
[snip] I seem to remember that you access/use PHP data in the same/similar way to Perl data and that you can create complex data structures ie arrays of arrays, arrays of records etc. For once Google let me down so can any one point at any doc info. [/snip] Start with http://www.php.net/array --