当前位置:Gxlcms > PHP教程 > php-php进阶-php如何写一个简单的类的拓展?

php-php进阶-php如何写一个简单的类的拓展?

时间:2021-07-01 10:21:17 帮助过:2人阅读

目前只会写一个函数,我想写个简单的类。

回复内容:

目前只会写一个函数,我想写个简单的类。

a=$a;
    $this->b=$b;
    }



    function __toString()
    {
        $c=$this->a+$this->b;
        $c=strval($c);
        return $c  ;
    }



}


echo new 我是加法(1,2);

人气教程排行