主页 > 知识库 > PHP7匿名类的用法示例

PHP7匿名类的用法示例

热门标签:团购网站 电子围栏 科大讯飞语音识别系统 服务器配置 Mysql连接数设置 阿里云 Linux服务器 银行业务

本文实例讲述了PHP7匿名类的用法。分享给大家供大家参考,具体如下:

?php
/**
 * Created by PhpStorm.
 * User: Itboot
 * Date: 2019/1/17
 * Time: 18:15
 */
class An
{
  private $num;
  protected $age = 15;
  public function __construct() {
    $this->num = 1;
  }
  protected function bar(): int {
    return 10;
  }
  public function drive() {
    return new class($this->num) extends An{
      protected $id;
      public function __construct($num) {
        $this->id = $num;
      }
      public function ea() {
        return $this->id + $this->age + $this->bar();
      }
    };
  }
}
echo (new An())->drive()->ea();

?php
$fun = function (){
  print '这是匿名函数'. PHP_EOL;
};
$fun();
class Animal
{
  public $num;
  public function __construct(...$args)
  {
    $this->num = $args[0];
  }
  public function getValue($su): int
  {
    return $this->num + $su;
  }
}
$an = new Animal(4);
echo $an->getValue(12) . PHP_EOL;
echo '匿名类'. PHP_EOL;
echo (new class(11) extends Animal{})->getValue(12);

更多关于PHP相关内容感兴趣的读者可查看本站专题:《php面向对象程序设计入门教程》、《PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程》、《PHP运算与运算符用法总结》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》

希望本文所述对大家PHP程序设计有所帮助。

您可能感兴趣的文章:
  • 什么是PHP7中的孤儿进程与僵尸进程
  • CentOS7安装PHP7 Redis扩展的方法步骤
  • PHP7引入的"??"和"?:"的区别讲解
  • 为Plesk PHP7启用Oracle OCI8扩展方法总结
  • Centos7.4环境安装lamp-php7.0教程
  • 浅析PHP7的多进程及实例源码

标签:大理 江苏 枣庄 衢州 衡水 蚌埠 萍乡 广元

巨人网络通讯声明:本文标题《PHP7匿名类的用法示例》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266