欧普下载是国内较新、较齐、较安全的软件下载基地!
当前位置:首页 ›› 其他软件 ›› 编程相关 ›› JSONLint下载

JSONLint

JSONLint[下载地址]
JSONLint

JSONLint是Java开发中常用的一款文件,可进行多种功能的实现,新版本修正了PHP 5.3在bin/jsonlint中的兼容性,增加了使用jsonlint二进制文件一次lint多个文件的能力,需要的朋友可以来本站下载!

JSONLint

使用说明

php

use Seld\JsonLint\JsonParser;

$parser = new JsonParser();

// returns null if it's valid json, or a ParsingException object.

$parser->lint($json);

// Call getMessage() on the exception object to get

// a well formatted error message error like this

// Parse error on line 2:

// ... "key": "value" "numbers": [1, 2, 3]

// ----------------------^

// Expected one of: 'EOF', '}', ':', ',', ']'

// Call getDetails() on the exception to get more info.

// returns parsed json, like json_decode() does, but slower, throws

// exceptions on failure.

$parser->parse($json);

```

You can also pass additional flags to `JsonParser::lint/parse` that tweak the functionality:

- `JsonParser::DETECT_KEY_CONFLICTS` throws an exception on duplicate keys.

- `JsonParser::ALLOW_DUPLICATE_KEYS` collects duplicate keys. e.g. if you have two `foo` keys they will end up as `foo` and `foo.2`.

- `JsonParser::PARSE_TO_ASSOC` parses to associative arrays instead of stdClass objects.

Example:

```

$parser = new JsonParser;

try {

$jsonParser->parse(file_get_contents($jsonFile), JsonParser::DETECT_KEY_CONFLICTS);

} catch (DuplicateKeyException $e) {

$details = $e->getDetails();

echo 'Key '.$details['key'].' is a duplicate in '.$jsonFile.' at line '.$details['line'];

}

下载JSONLint
本地下载地址:
本地电信下载
本地电信下载
本地联通下载
本地联通下载
本地迅雷下载
本地迅雷下载
移动用户下载
移动用户下载

版权声明:本站提的序列号、注册码、注册机、补丁等均来自互联网,仅供学习交流之用,请在下载后24小时内删除。

相关文章
软件评论
请自觉遵守互联网相关政策法规,评论内容只代表网友观点,与本站立场无关!
    登录   注册