Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

20 lines
514B

  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\helpers;
  8. /**
  9. * Json is a helper class providing JSON data encoding and decoding.
  10. * It enhances the PHP built-in functions `json_encode()` and `json_decode()`
  11. * by supporting encoding JavaScript expressions and throwing exceptions when decoding fails.
  12. * @author Qiang Xue <qiang.xue@gmail.com>
  13. * @since 2.0
  14. */
  15. class Json extends BaseJson
  16. {
  17. }