PHP code example of peterphp / json
1. Go to this page and download the library: Download peterphp/json library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
peterphp / json example snippets
$data = [
"name"=>'peter',
"email"=>"[email protected]"
];
//返回JSON格式的数据
\peterphp\Json::ext_json_encode($data);
//解析JSON格式的数据
Json::ext_json_decode