本文实例讲述了PHP7匿名类用法。分享给大家供大家参考,具体如下:
函数一样,创建一次性的简单对象
rush:PHP;">
PHP
/**
* Created by PHPStorm.
* User: bee
* Date: 2016/4/24
* Time: 00:17
*/
echo '匿名函数';
$anonymous_func = function(){return 'function';};
echo $anonymous_func();
echo '
'; echo ''; class common { public $default = 10; function __construct($key){ $this->getVal($key); } public function getVal(int $i):int{ $this->default += $i; return $this->default+0.1; } } echo '有名函数';echo '
'; $com = new common(1); echo $com->getVal(2.2).'--'; echo $com->getVal(2.2).'--'; echo (new common(1))->getVal(8.9); echo '';echo '匿名类'; //定义匿名类需继承 echo (new class(1) extends common{})->getVal(90);echo '
'; echo (new class(2) extends common{})->getVal(90);
'; echo ''; class common { public $default = 10; function __construct($key){ $this->getVal($key); } public function getVal(int $i):int{ $this->default += $i; return $this->default+0.1; } } echo '有名函数';echo '
'; $com = new common(1); echo $com->getVal(2.2).'--'; echo $com->getVal(2.2).'--'; echo (new common(1))->getVal(8.9); echo '';echo '匿名类'; //定义匿名类需继承 echo (new class(1) extends common{})->getVal(90);echo '
'; echo (new class(2) extends common{})->getVal(90);
运行效果图如下:
方法或者属性。 为了访问外部类(Outer class)protected 属性或方法,匿名类可以 extend(扩展)此外部类。 为了使用外部类(Outer class)的 private属性,必须通过构造器传进来:
rush:PHP;">
prop) extends Outer {
private $prop3;
public function __construct($prop)
{
$this->prop3 = $prop;
}
public function func3()
{
return $this->prop2 + $this->prop3 + $this->func1();
}
};
}
}
echo (new Outer)->func2()->func3();//6
函数可以实现闭包,那么相应的匿名类也可以实现闭包
rush:PHP;">
PHP
/**
* Created by PHPStorm.
* User: bee
* Date: 2016/4/24
* Time: 1:51
*/
$arr = array();
for ($i=0; $i<3; $i++){
$arr[] = new class($i){
public $index=0;
function __construct($i)
{
$this->index = $i;
echo 'create';
}
public function getVal(){
echo $this->index;
}
};
}
$arr[2]->getVal();
echo '
'; var_dump($arr[1]);
'; var_dump($arr[1]);
运行效果图如下:
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》及《》
希望本文所述对大家PHP程序设计有所帮助。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。