Re: [PHP] Static Array declaration within class PHP5

2005-01-21 Thread Richard Lynch
Marek wrote: > Hello > > I'm trying to create a public static array within a class.(PHP5). > > First - the following fails: > > class yadayada { > public static $tester[0]="something"; > public static $tester[1]="something 1"; > > Second - However the following works: > > class yada

Re: [PHP] Static Array declaration within class PHP5

2005-01-21 Thread Jochem Maas
Marek wrote: Hello I'm trying to create a public static array within a class.(PHP5). First - the following fails: class yadayada { public static $tester[0]="something"; public static $tester[1]="something 1"; of course this doesn't (ok so its obvious to me) first of its gener