当echo一个对象的时候,会报错误 Object of class Person could not be converted to string 我们可以通过魔术方法__tostring() 把对象转成字符串 #!/usr/bin/php <?php class Person{ public $name = 'ghostwu'; public $age = 20; function __toString(){ return json_encode( $this ); } } echo new…
<?php class mycoach{ public function __construct($name,$age) { $this->name = $name; $this->age = $age; echo "upon melancholy hill"."\n"; } public function __toString() { #echo时触发,返回一个字符串 return "working hard and party wit…
PHP中定义了一个内置方法__clone()来调整兑现的克隆行为: 当一个对象被克隆的时候会自动执行__clone()方法,而复制的对象可以在其方法内进行调整 header('Content-type:text/html;charset="utf-8"'); /*存在内置方法_clone()的类*/ class Computer{ public $_name; public function __clone(){ $this->_name = "IBM"; }…
当我们调用类中的方法时,如果方法不存在的话.__call会是运行,从而使错误不显示出来 header('Content-type:text/html;charset="utf-8"'); class Computer{ public function _run(){ echo '我正在运行中'; } /*__call方法要求参数必须是两个*/ public function __call($_methodName,$arrlist){ echo $_methodName.'()方法不存…
l 基本介绍: 当我们希望将一个对象当做字符串来输出时,就会触发__toString魔术方法. <?php header('content-type:text/html;charset=utf-8'); //__toString函数 class Sheep{ public $name; protected $food; public function __construct($name, $food){ $this->name = $name; $this->food = $food;…
php魔术方法-----__tostring(),__invoke,__call(),__callStatic ... __tostring(),__invoke() __tostring()方法是在对象当作字符串输出时被自动调用 __invoke()方法是在对象当作方法时被自动调用 <?php class Tomato { public function __tostring(){ return "string"; } public function __invoke(){ e…
__clone() - 当对象克隆的时候自动加载此方法 __toString() - 当对象需要echo打印输出的时候自动加载此方法 __clone() <?php class example{ public static $pa; public $pb; public function __construct(){ $this->pb = ++self::$pa; } public function __clone(){ $this->pb = 'no zuo no die'; } }…
__construct 构造器是一个魔术方法,当对象被实例化时它会被调用.在一个类声明时它常常是第一件做的事但是没得必要他也像其他任何方法在类中任何地方都可以声明,构造器也能像其他方法样继承.如果我们想到以前继承例子从介绍到oop,我们能添加构造方法到Animal 类中,如: class Animal{ public function __construct() { $this->created = time(); $this->logfile_handle = fopen('/tmp/log…
魔术方法是php面向对象特有的功能,并且有时候能实现意想不到的效果,包括前面提到的构造函数.析构函数.还有__clone函数,另外再简单的介绍几个: 1.__toSring和__invoke class Moshu{ public function __tostring(){ return "This is the Class MagicTest.<br />"; } public function __invoke($x){ echo "__invoke cal…
PHP面向对象中常用的关键字 final 1.final不能修饰成员属性(类中常量不是用这个关键字) 2.final只能修饰类和方法 作用: 使用final修饰的类不能被子类继承 使用final修饰的方法不能被子类覆盖 用来限制类不被继承,方法不被覆盖就使用final <?php //final修饰的类不能被继承 final class Person{ var $name; var $age; var $sex; funct…