静的メソッドを持つクラスがあります。static メソッドは、private static stdClass オブジェクトを返します。
myclass::get() // returns stdClass object
myclass::get()->name // name is hardcoded into the class
次のように名前の値を変更するにはどうすればよいですか。
myclass::get()->name = 'bob';
そしてそれは設定されていますか?
次のようなオブジェクトを返そうとしました:
return &self::$static_object;
しかし、それは構文エラーをスローします。
私に何ができる?
明確化のために投稿されたコードを編集します
final class config {
private static $configs = array();
public static function get($config_name) {
if (isset($configs[$config_name])) {
return self::$configs[$config_name];
}
$file = __get_file_exists(M_CONFIGS . $config_name, 'conf.');
if ($file) {
$config = self::__scope_include($file);
if (!is_array($config) && !$config instanceof stdClass) {
/*
*
*
* FIX
*
*
*
*/
die('ERROR config.php');
}
return self::$configs[$config_name] = self::__to_object($config);
}
}
private static function __scope_include($file) {
return include $file;
}
private static function __to_object($config) {
$config = (object) $config;
foreach ($config as &$value) {
if (is_array($value)) {
$value = self::__to_object($value);
}
}
return $config;
}
}
echo config::get('people')->name; //dave
config::get('people')->name = 'bob';
echo config::get('people')->name; // should be bob, is dave