我正在尝试如何在 PHP 中存储字符串资源的配方,但我似乎无法让它工作。我有点不确定 __get 函数是如何与数组和对象相关的。
错误消息:“致命错误:无法在第 34 行的 /var/www/html/workspace/srclistv2/Resource.php 中使用 stdClass 类型的对象作为数组”
我究竟做错了什么?
/**
* Stores the res file-array to be used as a partt of the resource object.
*/
class Resource
{
var $resource;
var $storage = array();
public function __construct($resource)
{
$this->resource = $resource;
$this->load();
}
private function load()
{
$location = $this->resource . '.php';
if(file_exists($location))
{
require_once $location;
if(isset($res))
{
$this->storage = (object)$res;
unset($res);
}
}
}
public function __get($root)
{
return isset($this->storage[$root]) ? $this->storage[$root] : null;
}
}
这是名为 QueryGenerator.res.php 的资源文件:
$res = array(
'query' => array(
'print' => 'select * from source prints',
'web' => 'select * from source web',
)
);
这里是我试图称呼它的地方:
$resource = new Resource("QueryGenerator.res");
$query = $resource->query->print;