当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ReflectionMethod export()用法及代码示例


ReflectionMethod::export()函数是PHP中的一个内置函数,如果将return参数设置为TRUE,则用于以字符串形式返回导出,否则返回NULL。

用法:

string ReflectionMethod::export ( $class, $name, $return )

参数:此函数接受上述和以下所述的三个参数:


  • class:这是初始化类的名称。
  • name:这是方法的名称。
  • return:它的值为TRUE或FALSE。使用TRUE将返回导出,而使用FALSE将相反。

返回值:如果将return参数设置为TRUE,则此函数以字符串形式返回导出,否则返回NULL。

以下示例程序旨在说明PHP中的ReflectionMethod::export()函数:
程序_1:

<?php 
  
// Initializing a user-defined class 
class Company { 
  
    protected function GeeksforGeeks($name) { 
        return 'GFG' . $name; 
    } 
} 
  
// Using ReflectionMethod() over the class Company 
$A = new ReflectionMethod(new Company(), 'GeeksforGeeks'); 
  
// Calling the export() function 
$B = $A->export( 'Company', 'GeeksforGeeks', $return = TRUE ); 
  
// Getting the the export as a string if the  
// return parameter has been set to TRUE,  
// otherwise NULL is returned. 
var_dump($B); 
?>

输出:

string(171) "Method [ <user> protected method GeeksforGeeks ] {
  @@ /home/cd1a603457d3beda20350155354b4363.php 6 - 8

  - Parameters [1] {
    Parameter #0 [ <required> $name ]
  }
}
"

程序_2:

<?php 
  
// Initializing some user-defined classes 
class Department1 { 
  
    protected function HR($name) { 
        return 'hr' . $name; 
    } 
} 
class Department2 { 
  
    protected function Coding($name) { 
        return 'coding' . $name; 
    } 
} 
class Department3 { 
  
    protected function Marketing($name) { 
        return 'marketing' . $name; 
    } 
} 
  
// Using ReflectionMethod() over the above classes 
$A = new ReflectionMethod(new Department1(), 'HR'); 
$B = new ReflectionMethod(new Department2(), 'Coding'); 
$C = new ReflectionMethod(new Department3(), 'Marketing'); 
  
// Calling the export() function and  
// Getting the the export as a string if the  
// return parameter has been set to TRUE,  
// otherwise NULL is returned. 
var_dump($A->export( 'Department1', 'HR', $return = TRUE )); 
var_dump($B->export( 'Department2', 'Coding', $return = FALSE )); 
var_dump($C->export( 'Department3', 'Marketing', $return = FALSE )); 
?>

输出:

string(160) "Method [ <user> protected method HR ] {
  @@ /home/b1fa43e2f382f32d60abd4370db4a4f6.php 6 - 8

  - Parameters [1] {
    Parameter #0 [ <required> $name ]
  }
}
"
Method [ <user> protected method Coding ] {
  @@ /home/b1fa43e2f382f32d60abd4370db4a4f6.php 12 - 14

  - Parameters [1] {
    Parameter #0 [ <required> $name ]
  }
}

NULL
Method [ <user> protected method Marketing ] {
  @@ /home/b1fa43e2f382f32d60abd4370db4a4f6.php 18 - 20

  - Parameters [1] {
    Parameter #0 [ <required> $name ]
  }
}

NULL

参考: https://www.php.net/manual/en/reflectionmethod.export.php



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionMethod export() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。