robertsaupe / php-json
用于解析json和jsonc的php库
1.0.4
2024-02-21 10:17 UTC
Requires
- php: >=8.2.0
- ext-json: *
- justinrainbow/json-schema: ^5
- seld/jsonlint: ^1
- webmozart/assert: ^1
Requires (Dev)
- phpstan/phpstan: ^1
README
用于解析json和jsonc的php库
支持
GitHub | Patreon | PayPal | Amazon
安装
composer require robertsaupe/php-json
入门
Json
use robertsaupe\Json\Json; $json = new Json(); print_r($json->decodeFile('path_to_file.json'));
Jsonc
use robertsaupe\Json\Jsonc; $jsonc = new Jsonc(); print_r($jsonc->decodeFile('path_to_file.jsonc'));
致谢
-
box-project/box 提供基本 Json 解析
- Kevin Herrera kevin@herrera.io
- Théo Fidry theo.fidry@gmail.com
-
Alexander Shostak https://stackoverflow.com/a/43439966 为解码带注释的json