json
json copied to clipboard
JSON encoding and decoding
Fix docs
### What steps will reproduce the problem? Would like to be able to use **JsExpression** in Yii3, like in Yii2 making it possible to json encode javascript expressions. **JsExpression** seems...
## About [`jsonSerialize()`](https://github.com/yiisoft/json/blob/776be3efb839c77991ebf95a7c65b47aa3af1a63/src/Json.php#L140) [PHP documentation](https://www.php.net/manual/en/jsonserializable.jsonserialize.php) mentions: *Returns data which can be serialized by `json_encode()`* [`processObject()`](https://github.com/yiisoft/json/blob/776be3efb839c77991ebf95a7c65b47aa3af1a63/src/Json.php#L136) should return the result of `jsonSerialize()` without processing: ```php private static function processObject(object $data) {...