Re: Static Array declaration within class PHP5

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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 yadayada {
>         public static $tester = array (0 => "something", 1 >="something
> 1");
>
> My question is this: I have an array that has about some 150 different
> values and using the second example would get very very messy, is there
> another method of doing this ? The first example(which fails) is the
> cleanest, is there anything I can do ?

You could set the elements one by one in a constructor, I do believe.

You *MIGHT* be able to do:

$foo[0] = '0';
$foo[1] = '1';
$foo[2] = '2';
.
.
.
class yadayada {
  public static $tester = $foo;
}

but I doubt it...

-- 
Like Music?
http://l-i-e.com/artists.htm

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux