CJSON Yii 框架示例
CJSON Yiiframework Example
我正在尝试学习 Yii 框架来处理一个名为 HumHub 的项目,但是文档中缺少示例,而且我对一般框架非常非常陌生。通常我会根据自己异常强迫症的想法开发自己的东西。
http://www.yiiframework.com/doc/api/1.1/CJSON
如何使用 CJSON class 读取 json 文件并将其用作变量?
您可以像这样将 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);
我正在尝试学习 Yii 框架来处理一个名为 HumHub 的项目,但是文档中缺少示例,而且我对一般框架非常非常陌生。通常我会根据自己异常强迫症的想法开发自己的东西。
http://www.yiiframework.com/doc/api/1.1/CJSON
如何使用 CJSON class 读取 json 文件并将其用作变量?
您可以像这样将 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);