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

php tostring用法

时间:2020-04-18 10:07:38      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:highlight   ret   turn   eth   public   fun   imp   str   todo   

<?php


        class a{
            private $a="123";
            private $b="456";
            public function __toString()
            {
                // TODO: Implement __toString() method.

    return $this->a.$this->b;
    }
    }


    $a  = new a();

    echo $a;

  

php tostring用法

标签:highlight   ret   turn   eth   public   fun   imp   str   todo   

原文地址:https://www.cnblogs.com/ysbl/p/12723771.html

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