当前位置:首页 > PHP教程 > php应用 > 列表

php 使用 __call实现重载功能示例

发布:smiling 来源: PHP粉丝网  添加日期:2022-01-22 21:44:44 浏览: 评论:0 

这篇文章主要介绍了php 使用 __call实现重载功能,结合实例形式分析了PHP使用__call实现重载的相关操作技巧,需要的朋友可以参考下。

本文实例讲述了php 使用 __call实现重载功能,分享给大家供大家参考,具体如下:

  1. <?php 
  2. /** 
  3.  * Created by PhpStorm. 
  4.  * User: funco 
  5.  * Date: 17-6-9 
  6.  * Time: 下午1:39 
  7.  */ 
  8. class MulStat 
  9.   // showClass 可以接受0个参数 
  10.   private function showClass() { 
  11.     echo "this is class ".__CLASS__
  12.   } 
  13.  
  14.   // showString 可以接受一个参数 
  15.   private function showString($str) { 
  16.     echo "string is ".$str
  17.   } 
  18.  
  19.   // __call方法 可以获取实例化对象调用的成员函数名和向该被调函数传递的参数个数 
  20.   public function __call($name$args) { 
  21.     // 先判断要调用的函数名$name 
  22.     if($name == "showInfo"){ 
  23.       // 然后可以根据参数($args)数量判断调用哪个成员函数 
  24.       switch(count($args)) {           // count可以计算数组元素个数 
  25.         case 0: 
  26.           $this->showClass();break
  27.         case 1: 
  28.           $this->showString($args[0]);break
  29.       }// switch 
  30.     }// if 
  31.   } 
  32.  
  33. //实例化MulStat类 
  34. $mulStat = new MulStat(); 
  35.  
  36. echo "\$mulStat->showInfo(\"funco 小风\"):\n"
  37. $mulStat->showInfo("funco 小风"); 
  38.  
  39. // 两次换行 便于观察结果 
  40. echo "\n\n"
  41.  
  42. echo "\$mulStat->showInfo():\n"
  43. $mulStat->showInfo(); 

运行结果:

$mulStat->showInfo("funco 小风"):

string is funco 小风

$mulStat->showInfo():

this is class MulStat

Tags: __call php重载

分享到: