码迷,mamicode.com
首页 > Web开发 > 详细

PHP convet class to json data

时间:2017-08-11 11:04:42      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:tac   输出   obj   自动   port   内容   usr   https   context   

/*********************************************************************
 *              PHP convet class to json data
 * 说明:
 *     突然想使用class自动转换为json数据,这样的代码可扩展性会好一点,
 * 只需要修改class的属性就能够达到最终json数据输出,不过有遇到class中
 * 初始化class变量需要在构造函数中初始化的的问题。
 *
 *                                   2017-8-11 深圳 龙华樟坑村 曾剑锋
 ********************************************************************/


一、参考文档:
    1. getting Parse error: syntax error, unexpected T_NEW [closed]
        https://stackoverflow.com/questions/15806981/getting-parse-error-syntax-error-unexpected-t-new

二、测试代码:
    <?php
        class Uart {
            public $port = "/dev/ttyO0";
            public $value = "OK";
        }

        class Context {
            public $uart = new Uart();;
            public $version = "v0.0.1";
        }

        $context = new Context;

        $context_json = json_encode($context);
        echo $context_json
    ?>

三、报错内容:
    Parse error: syntax error, unexpected new (T_NEW) in /usr/share/web/time.php on line 8

四、最终代码:
    <?php
        class Uart {
            public $port = "/dev/ttyO0";
            public $value = "OK";
        }

        class Context {
            public $uart;
            public $version = "v0.0.1";

            public function __construct() {
                $this->uart = new Uart();
            }
        }

        $context = new Context;

        $context_json = json_encode($context);
        echo $context_json
    ?>

五、输出结果:
    {"uart":{"port":"\/dev\/ttyO0","value":"OK"},"version":"v0.0.1"}

六、原因:
    you must do initialize new objects in the __construct function;

 

PHP convet class to json data

标签:tac   输出   obj   自动   port   内容   usr   https   context   

原文地址:http://www.cnblogs.com/zengjfgit/p/7344008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!