我正在尝试学习Yii框架来处理一个名为HumHub的项目,但是文档在示例中缺乏,而且我对框架一般都是非常非常新的。通常我会根据我异乎寻常的OCD思维开发自己的。
http://www.yiiframework.com/doc/api/1.1/CJSON
我如何使用CJSON类读取json文件并将其用作vars?
答案 0 :(得分:1)
您可以将javascript文本解码为php变量,但首先您需要将文件读入如下文本:
$json_text = file_get_contents('file.json');
// or the yii way
$json_text = $this->renderPartial('path.to.file.json', null, true, true);
// then decode it
$var = json_decode($json_text);
// or the yii way
$var = CJSON::decode($json_text);