class myConfig { private static $configarray = array( "maxdepth" => 4, ); public static function getConfigArray() { return $this->configarray; } }
is clearly not working 🙂
how do i share a variable amongst multiple static functions?
Use self::$configarray instead of $this->configarray.