<? |
class A{ |
public function getASelf(){ |
return $this ; |
} |
public function __toString(){ |
return "这是类A的实例." ; |
} |
} |
$a = new A(); // 创建A的实例; |
$b = $a ->getASelf(); //调用方法返回当前实例. |
echo $a ; //打印对象会调用它的__toString方法. |
?> |
初级程序员
by: 梦泪 发表于:2019-06-05 15:49:13 顶(0) | 踩(0) 回复
回复评论