:
, , , .
, - PHP (), - , .
, , . , , , , , , .
: @ sberry2A , PHP 5.3 (.. , ).
class Foo
{
const A = 1;
const B = 1;
public static $bar = array(self::A => 1, self::B => 2);
}
, Foo::$bar[1] 2, 1. , :
class Foo
{
const A = 1;
const B = 1;
public static function bar()
{
return array(self::A => 1, self::B => 2);
}
}
, . PHP 5.3.3, , , , ... , .