本文整理汇总了PHP中JSON::decode_file方法的典型用法代码示例。如果您正苦于以下问题:PHP JSON::decode_file方法的具体用法?PHP JSON::decode_file怎么用?PHP JSON::decode_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSON
的用法示例。
在下文中一共展示了JSON::decode_file方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
function init(&$args)
{
Args::label($args, 'schema_file');
/* load the raw schema data */
$this->_schema_file = dirname(__FILE__) . DIRECTORY_SEPARATOR . Schema::SCHEMA_FILE;
if (isset($args->schema_file) === true) {
/* first param, if present, overrides schema file */
$this->_schema_file = $args->schema_file;
}
$this->_schema = JSON::decode_file($this->_schema_file);
if ($this->_schema === NULL) {
if (file_exists($this->_schema_file) === true) {
/* schema file exists but isn't loading - probably a stray comma */
throw new ConfigException('fatal; unable to parse schema file: ' . $this->_schema_file);
} else {
/* sschema doesn't exist */
throw new ConfigException('fatal; schema file: ' . $this->_schema_file . ', doesn\'t exist');
}
}
}