我试图访问控制器内的文件内容。
$data= file_get_contents($this->module->getPath()."data/file.json");
print_r(var_dump($data));
var_dump输出给出布尔值(false)。如何访问文件的内容?
答案 0 :(得分:0)
我想提一下你的道路是错误的。
print_r($this>->module->getPath() . "data/file.json");
这将输出:yourModuleName/data/file.json
但你的控制器位于controller/admin/
因此它会在controller/admin/yourModuleName/data/file.json
也许试试这个(未经测试):
"/../../".$this>->module->getPath()."data/file.json"