當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。