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


PHP ReflectionExtension getINIEntries()用法及代码示例


ReflectionExtension::getINIEntries()函数是PHP中的内置函数,用于返回以ini项作为键,并将其定义的值作为值的数组。

用法:

Array ReflectionExtension::getINIEntries( void )

参数:该函数不接受任何参数。


返回值:此函数返回一个数组,其中ini项作为键,其定义的值作为值。

以下示例程序旨在说明PHP中的ReflectionExtension::getINIEntries()函数:

程序_1:

<?php 
  
// Defining an extension 
$A = 'DOM'; 
  
// Using ReflectionExtension() over the  
// specified extension 
$extension = new ReflectionExtension($A); 
  
// Calling the getINIEntries() function 
$B = $extension->getINIEntries(); 
  
// Getting an array with the ini 
// entries as keys and their  
// defined values as values. 
var_dump($B); 
?>
输出:
array(0) {
}

程序_2:

<?php 
   
// Using ReflectionExtension() over  
// a extension pcre 
$extension = new ReflectionExtension("pcre"); 
   
// Calling the getINIEntries() function and 
// Getting an array with the ini 
// entries as keys and their  
// defined values as values. 
var_dump($extension->getINIEntries()); 
?>
输出:
array(3) {
  ["pcre.backtrack_limit"]=>
  string(7) "1000000"
  ["pcre.recursion_limit"]=>
  string(6) "100000"
  ["pcre.jit"]=>
  string(1) "1"
}

参考: https://www.php.net/manual/en/reflectionextension.getinientries.php



相关用法


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