<?php
$name = '{"name": "张翼德"}';
// echo json_decode($name) . PHP_EOL;
// PHP Fatal error: Uncaught Error: Object of class stdClass could not be converted to string
var_dump(json_decode($name, true)) . PHP_EOL;
// array(1) {
// ["name"]=> string(9) "张翼德"
// }