Display the text box

ini_get_all()

« ini_get | interface_exists »
<?php
$array 
ini_get_all (
    
?// [string $extension]
    
?  // [bool $details = true]
);
?>
Result
$array = [
  
'pcre.backtrack_limit' => [
    
'global_value' => '1000000',
    
'local_value' => '1000000',
    
'access' => 7,
  ],
  
'pcre.jit' => [
    
'global_value' => '1',
    
'local_value' => '1',
    
'access' => 7,
  ],
  
'pcre.recursion_limit' => [
    
'global_value' => '100000',
    
'local_value' => '100000',
    
'access' => 7,
  ],
]
Examples
#1 ini_get_all  ("pcre")
#2 ini_get_all  ("pcre",
 
false)
#3 ini_get_all  (null,
 
false)
See also
get_loaded_extensions, ini_get