zoukankan      html  css  js  c++  java
  • call_user_func函数

    <?php
      2     class Person
      3     {
      4         private $name;
      5         private $age;
      6         function __construct($name,$age)
      7         {
      8             $this->age = $age;
      9             $this->name = $name;
     10         }
     11
     12         function getInfo()
     13         {
     14             return [$this->name,$this->age];
     15         }
     16     }
     17
     18     class Man
     19     {
     20         private $person;
     21         function __construct($person)
     22         {
     23             $this->person = $person;
     24         }
     25         function __call($method, $args){
     26             echo get_called_class().PHP_EOL;
     27             return call_user_func([$this->person,$method],...$args);
     28         }
     29     }
     30     $person = new Person('tom',11);
     31
     32     $man = new Man($person);
     33     $result = $man->getInfo();
     34     var_dump($result);//通过回调函数调用对象方法 (用于=>调用某些接口自带的方法 直接采用__call来间接调用对象方法)
    ~                                

  • 相关阅读:
    获取从链接传来的id
    通过域名直接访问Tomcat项目解决方法
    线程与高并发
    阿里云部署javaWeb项目全过程
    前后端分离项目,支持跨域,session不丢失
    python函数
    装饰器
    迭代器和生成器
    C/C++ I/O处理
    C++虚函数
  • 原文地址:https://www.cnblogs.com/hiraeth/p/9026396.html
Copyright © 2011-2022 走看看