array of array
- From: "Bob Bedford" <bedford1@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 29 Sep 2005 10:51:58 +0200
I've to save in an array of array some values.
Problem: I don't know the size of the array before filling it.
I'd like something like
$bigarray = array():
then runnig the code I must create dinamically (I don't know how many) few arrays in the bigarray;
$bigarray["X"] = array():
$bigarray["Y"] = array():
then fill those arrays with few unknow number of values. array_push($bigarray["X"],$value1); array_push($bigarray["X"],$value2);
array_push($bigarray["Y"],$value5); .... but array_push doesn't manage it.
How to do so ?
Bob
.
- Follow-Ups:
- Re: array of array
- From: Ewoud Dronkert
- Re: array of array
- From: Kim André Akerø
- Re: array of array
- Prev by Date: Re: search engine optimization question
- Next by Date: Re: search engine optimization question
- Previous by thread: search engine optimization question
- Next by thread: Re: array of array
- Index(es):