これって超便利じゃね?と思ったので紹介。 すでにだれかが思いついてるだろうけど見たことないので。 ソース <?php // EConfig.php class EConfig { private function __construct() { $state = @unserialize( substr( file_get_contents( __FILE__), __COMPILER_HALT_OFFSET__)); if( $state !== false) foreach( $state as $key => $value) $this->{$key} = $value; } public static function getInstance() { static $instance = null; if( $instance === null) $instance = new s