I\'ve got a private variable in my class
private $noms = array( \"HANNY\", \"SYS\", \"NALINE\" );
I want to access
You have to make the noms static, too and access it via self::$noms.