PHP 选项/信息 函数
在线手册:中文  英文

phpinfo

(PHP 4, PHP 5)

phpinfo输出关于 PHP 配置的信息

说明

bool phpinfo ([ int $what = INFO_ALL ] )

输出 PHP 当前状态的大量信息,包含了 PHP 编译选项、启用的扩展、PHP 版本、服务器信息和环境变量(如果编译为一个模块的话)、PHP环境变量、操作系统版本信息、path 变量、配置选项的本地值和主值、HTTP 头和PHP授权信息(License)。

因为每个系统安装得有所不同, phpinfo() 常用于在系统上检查 配置设置预定义变量

phpinfo() 同时是个很有价值的、包含所有 EGPCS(Environment, GET, POST, Cookie, Server) 数据的调试工具。

参数

what

可以用以下的一个或多个 constants 用位运算传递给可选的 what 参数来定制输出的信息。 该参数可以把常量相加或者用 or 操作符按位运算。

phpinfo() 选项
Name (constant) Value Description
INFO_GENERAL 1 配置的命令行、 php.ini 的文件位置、建立的时间、Web 服务器、系统及更多其他信息。
INFO_CREDITS 2 PHP 贡献者名单。参加 phpcredits()
INFO_CONFIGURATION 4 当前PHP指令的本地值和主值。参见 ini_get()
INFO_MODULES 8 已加载的模块和模块相应的设置。参见 get_loaded_extensions()
INFO_ENVIRONMENT 16 环境变量信息也可以用 $_ENV 获取。
INFO_VARIABLES 32 显示所有来自 EGPCS (Environment, GET, POST, Cookie, Server) 的 预定义变量
INFO_LICENSE 64 PHP许可证信息。参见 » license FAQ
INFO_ALL -1 显示以上所有信息。

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

更新日志

版本 说明
5.2.2 增加了“已加载的配置文件”信息,之前只存在“配置文件路径(php.ini)"。

范例

Example #1 phpinfo() 范例

<?php

// 显示所有信息,默认显示 INFO_ALL
phpinfo();

// Show just the module information. 仅仅显示PHP模块信息,
// phpinfo(8) 返回同样的结果。
phpinfo(INFO_MODULES);

?>

注释

Note:

expose_php 设置为 off 部分信息将不会被显示。包括了 PHP 和Zend 的标志,以及贡献者名单。

Note:

在命令行(CLI)模式下 phpinfo() 仅会输出纯文本,而不是HTML。

参见


PHP 选项/信息 函数
在线手册:中文  英文

用户评论:

SimonD (2013-04-22 18:05:57)

Removes sensitive data like AUTH_USER and AUTH_PASSWORD from the phpinfo output:

<?php
// start output buffering
ob_start();

// send phpinfo content
phpinfo();

// get phpinfo content
$html ob_get_contents();

// flush the output buffer
ob_end_clean();

// remove auth data
if (isset($_SERVER['AUTH_USER'])) $html str_replace($_SERVER['AUTH_USER'], '<i>no value</i>'$html);
if (isset(
$_SERVER['AUTH_PASSWORD'])) $html str_replace($_SERVER['AUTH_PASSWORD'], '<i>no value</i>'$html);

echo 
$html;

henzeberkheij at dot SPAM dot gmail dot com (2012-08-28 14:20:37)

I needed a way to quickly scroll through the phpinfo which is a large list of information. so here it is. In the top there is a list with sections, the new section loaded extensions will hold the links to the anchors of the loaded modules. the section session variables will show the current loaded sessions. It's using Domdocument for manipulation so you should have that loaded:
<?php
ob_start
();
    
$exts get_loaded_extensions();
    
phpinfo();
    
$phpinfo ob_get_contents();
    
ob_end_clean();
    
//print $phpinfo;
    
$html_str $phpinfo;
    
$html = new DOMDocument();
    
$html->loadHTML($html_str);
    
$title $html->getElementsByTagName("title")->item(0);
    
$title->nodeValue "PHP Version ".phpversion();
    
$body $html->getElementsByTagName("body")->item(0);
    
    
$body->setAttribute("style""background-color:beige;");
    
$table $body $html->getElementsByTagName("table")->item(3)->nextSibling;
    
$head  $html->getElementsByTagName("table")->item(0)->nextSibling;
    
ob_start();
    
?>
    <h2><a name="session_variables">Session variables</a></h2>
    <table border="0" cellpadding="2" width="600">
    <tr class="h"><th>Variables</th><th>Value</th></tr>
    <?php foreach($_SESSION as $key=>$value){ 
        if(
is_bool($value)){
            
$value = ($value)?"true":"false";
        }else if(
is_array($value)){
            
$value '<pre>'.print_r($valuetrue).'</pre>';
        }else if(empty(
$value) && $value != "0"){
            
$value "<i>no value</i>";
        }
    
?>
    <tr>
        <td class="e"><?=$key?></td>
        <td class="v"><?=$value?></td>
    </tr>
    <?php
    
}
    
?>
    </table>
    
    <h2><a name="loaded_extensions">loaded extensions</a></h2>
    <table border="0" cellpadding="2" width="600">
    <tr class="h"><th>Extension</th><th>Version</th></tr>
    <?php 
        
        natcasesort
($exts);
    foreach(
$exts as $value){
        
$version phpversion($value);    
    
?>
    <tr>
        <td class="e" style="width:150px;"><a href="#module_<?=$value?>" style="color:black; background-color:#ccccff;"><?=$value?></a></td>
        <td class="v"><?=(!empty($version))?$version:"<i>Unknown</i>" ?></td>
    </tr>
    <?php
    
}
    
?>
    </table><br />
    <?php
    $txt_str 
ob_get_contents();
    
ob_end_clean();
    
$txt = new DOMDocument();
    
$txt->loadHTML($txt_str);
    
$txt_body $txt->getElementsByTagName("body")->item(0);

    foreach(
$txt_body->childNodes as $child){
        
$child $html->importNode($childtrue);
        
$table->parentNode->insertBefore($child$table);
    }
    
    
$h2 $html->getElementsByTagName("h2");
    foreach(
$h2 as $item){
        if(
$item->getElementsByTagName("a")->length == 0){
            
$value $item->nodeValue;
            
$item->nodeValue "";
            
$a $html->createElement("a");
            
$a->setAttribute("name"strtolower(str_replace(" ""_"$value)));
            
$a->nodeValue $value;
            
$item->appendChild($a);
        }
        
$a $item->getElementsByTagName("a")->item(0);
        
        if(!
in_array($a->nodeValue$exts)){
            
$menu[strtolower(str_replace(" ""_"$a->nodeValue))] = $a->nodeValue;
        }
        
$top_a $html->createElement("a");
        if(!
in_array($a->nodeValue$exts)){
            
$txt $html->createTextNode("(Go to top)"); 
            
$top_a->appendChild($txt);
            
$top_a->setAttribute("href""#");
        }else{
            
$txt $html->createTextNode("(Go to extensionlist)"); 
            
$top_a->appendChild($txt);
            
$top_a->setAttribute("href""#loaded_extensions");
        }
        
$top_a->setAttribute("style""background-color:beige; font-size:12px; margin-left:5px; margin-top:-5px; color:black;");
        
$item->appendChild($top_a);        
    }
    
ob_start();
    
?>
    <br />
    <table border="0" cellpadding="2" width="600">
    <tr class="h"><th colspan="2">Sections</th></tr>
    <tr>
        <?php
        $i 
0;
        foreach(
$menu as $key=>$item){
            print 
"<td class='v'><a href='#$key' style='background-color:#cccccc; color:black;'>$item</a></td>";
            if(
$i%2){
                print 
'</tr><tr>';
            }
            
$i++;
        }
        if(
$i%2){
            print 
'<td class="v"></td>';
        }
        
?>
    </tr>
    </table>
    
    <?php
    $txt_str 
ob_get_clean();
    
$txt = new DOMDocument();
    
$txt->loadHTML($txt_str);
    
$txt_body $txt->getElementsByTagName("body")->item(0);
    foreach(
$txt_body->childNodes as $child){
        
$child $html->importNode($childtrue);
        
$table->parentNode->insertBefore($child$head);
    }
    print 
$html->saveHTML();
?>

neo_selen (2012-06-21 20:52:20)

here you can notice that these numeric values of phpinfo
are similar to certain things in the binary system:

-1, coded in 7 digits:
111 1111

look at this:
1+2+4+8+16+32+64=127

unsigned,127 is:
111 1111

so, take a look at this: the way to get all function is to add all of them. zero is nothing.-1 is all.
so you can pass option with a negative number.
for example:
<?php phpinfo(48?>
is also:
<?php phpinfo(-80?>
48 = 32 + 16
-80= 0 - 64 - 8 - 4 - 2 - 1

so you can see in negative mode it like that:
not nothing
not all (-1) don't forget it !
not option 64
not option 8
not option 4
not option 2

so, that's good if you don't want option 8, you will do this:
not nothing(0)
not all(-1)
not option 8(-1)
you got:
<?php phpinfo(-9); ?>

hope this will be useful, that's my 1rst post ^^

Ken (2011-12-13 06:52:40)

Hi.

Here my version of saving php_info into an array:

<?php
function phpinfo_array()
{
    
ob_start();
    
phpinfo();
    
$info_arr = array();
    
$info_lines explode("\n"strip_tags(ob_get_clean(), "<tr><td><h2>"));
    
$cat "General";
    foreach(
$info_lines as $line)
    {
        
// new cat?
        
preg_match("~<h2>(.*)</h2>~"$line$title) ? $cat $title[1] : null;
        if(
preg_match("~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~"$line$val))
        {
            
$info_arr[$cat][$val[1]] = $val[2];
        }
        elseif(
preg_match("~<tr><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td><td[^>]+>([^<]*)</td></tr>~"$line$val))
        {
            
$info_arr[$cat][$val[1]] = array("local" => $val[2], "master" => $val[3]);
        }
    }
    return 
$info_arr;
}

// example:
echo "<pre>".print_r(phpinfo_array(), 1)."</pre>";
?>

pokusman at gmail dot com (2011-10-16 07:10:27)

Editable css for phpinfo() all what you need is change css properies...

<style type="text/css">

#phpinfo body, td, th, h1, h2 {font-family: sans-serif;}
#phpinfo pre {margin: 0px; font-family: monospace;}
#phpinfo a:link {color: #000099; text-decoration: none; background-color: #ffffff;}
#phpinfo a:hover {text-decoration: underline;}
#phpinfo table {border-collapse: collapse; width:100%}
#phpinfo .center {text-align: center;}
#phpinfo .center table { margin-left: auto; margin-right: auto; text-align: left;}
#phpinfo .center th { text-align: center !important; }
#phpinfo td, th { border: 1px solid #000000; font-size: 100%; vertical-align: baseline;}
#phpinfo h1 {font-size: 150%;}
#phpinfo h2 {font-size: 125%;}
#phpinfo .p {text-align: left;}
#phpinfo .e {background-color: #ccccff; font-weight: bold; color: #000000;}
#phpinfo .h {background-color: #9999cc; font-weight: bold; color: #000000;}
#phpinfo .v {background-color: #cccccc; color: #000000;}
#phpinfo .vr {background-color: #cccccc; text-align: right; color: #000000;}
#phpinfo img {float: right; border: 0px;}
#phpinfo hr {width: 800px; background-color: #cccccc; border: 0px; height: 1px; color: #000000;} 
</style>

<div id="phpinfo">
<?php

ob_start 
() ;
phpinfo () ;
$pinfo ob_get_contents () ;
ob_end_clean () ;

// the name attribute "module_Zend Optimizer" of an anker-tag is not xhtml valide, so replace it with "module_Zend_Optimizer"
echo ( str_replace "module_Zend Optimizer""module_Zend_Optimizer"preg_replace '%^.*<body>(.*)</body>.*$%ms''$1'$pinfo ) ) ) ;

?>
</div>

arimbourg at ariworld dot eu (2010-11-08 07:28:56)

This is necessary to obtain a W3C validation (XHTML1.0 Transitionnal)...
phpinfo's output is declared with that DTD :
- "System ID" has the wrong url to validate : "DTD/xhtml1-transitional.dtd" rather than "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
- Some module names contains space and the function's output use the name in anchors as ID and NAME. these attributes can't be validated like that (unique name only).

<?php

ob_start 
();

ob_start ();                              // Capturing
phpinfo ();                               // phpinfo ()
$info trim (ob_get_clean ());           // output

// Replace white space in ID and NAME attributes... if exists
$info preg_replace ('/(id|name)(=["\'][^ "\']+) ([^ "\']*["\'])/i''$1$2_$3'$info);

$imp = new DOMImplementation ();
$dtd $imp->createDocumentType (
    
'html',
    
'-//W3C//DTD XHTML 1.0 Transitional//EN',
    
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'
);
$doc $imp->createDocument (
    
'http://www.w3.org/1999/xhtml',
    
'html',
    
$dtd
);
$doc->encoding 'utf-8';

$info_doc = new DOMDocument ('1.0''utf-8');
/* Parse phpinfo's output
 * operator @ used to avoid messages about undefined entities
 * or use loadHTML instead
 */
@$info_doc->loadXML ($info);

$doc->documentElement->appendChild // Adding HEAD element to HTML
    
$doc->importNode (
        
$info_doc->getElementsByTagName ('head')->item (0),
        
true                         // With all the subtree
    
)
);
$doc->documentElement->appendChild // Adding BODY element to HTML
    
$doc->importNode (
        
$info_doc->getElementsByTagName ('body')->item (0),
        
true                         // With all the subtree
    
)
);

// Now you get a clean output and you are able to validate...
/*
echo ($doc->saveXML ());
//      OR
echo ($doc->saveHTML ());
 */

// By that way it's easy to add some style declaration :
$style $doc->getElementsByTagName ('style')->item (0);
$style->appendChild (
    
$doc->createTextNode (
        
'/* SOME NEW CSS RULES TO ADD TO THE FUNCTION OUTPUT */'
    
)
);

// to add some more informations to display :
$body $doc->getElementsByTagName ('body')->item (0);
$element $doc->createElement ('p');
$element->appendChild (
    
$doc->createTextNode (
        
'SOME NEW CONTENT TO DISPLAY'
    
)
);
$body->appendChild ($element);

// to add a new header :
$head $doc->getElementsByTagName ('head')->item (0);
$meta $doc->createElement ('meta');
$meta->setAttribute ('name''author');
$meta->setAttribute ('content''arimbourg at ariworld dot eu');
$head->appendChild ($meta);

// As you wish, take the rest of the output and add it for debugging
$out ob_get_clean ();

$pre $doc->createElement ('div'); // or pre
$pre->setAttribute ('style''white-space: pre;'); // for a div element, useless with pre
$pre->appendChild ($doc->createTextNode ($out));
$body->appendChild ($pre);

$doc->formatOutput true// For a nice indentation
$doc->saveXML ();

?>

All that could be done with only RegExp but I prefer the use of DOM for manipulating documents

support at page2pagepro dot com (2010-05-13 10:36:20)

I have been working extensively with portable Web Servers (i.e.: Uniform Server), and was trying to incorporate XSL, Tomcat and ASP. I decided first to 'modify' the way my php_info() appears, allowing a listing of currently loaded extensions. Hope someone finds this useful.

<?php

// Get PHP INFO
ob_start();
phpinfo();
$phpinfo ob_get_contents();
ob_end_clean();
$phpinfo preg_replace ('/<\/div><\/body><\/html>/'''$phpinfo);

//HR
$hr '<div style="width:100%;background:#000; height:10px;margin-bottom:1em;"></div>'.PHP_EOL;

//GET EXT INFO
ob_start();
echo 
'<table border="0" cellpadding="3" width="600">'.PHP_EOL;
echo 
'<tr class="h"><td><a href="http://www.php.net/">';
echo 
'<img border="0" src="http://static.php.net/www.php.net/images/php.gif" alt="PHP Logo" />';
echo 
'</a><h1 class="p">PHP Extensions</h1>'.PHP_EOL;
echo 
'</td></tr>'.PHP_EOL;
echo 
'</table><br />'.PHP_EOL;
echo 
'<h2>Overview</h2>'.PHP_EOL;
echo 
'<table border="0" cellpadding="3" width="600">'.PHP_EOL;
echo 
'<tr><td class="e">Extensions</td><td class="v">'.PHP_EOL;
$exts = array();
foreach (
get_loaded_extensions() as $ext) {
    
$exts[] = $ext;
}
echo 
implode(', '$exts).PHP_EOL;
echo 
'</td></tr></table><br />'.PHP_EOL;
echo 
'<h2>Details</h2>'.PHP_EOL;
echo 
'<table border="0" cellpadding="3" width="600">'.PHP_EOL;
foreach (
$exts as $ext) {
    echo 
'<tr><td class="e">'.$ext.'</td><td class="v">';
        
$funcs = array();
        foreach (
get_extension_funcs($ext) as $func) {
            
$funcs[] = $func;
        }
        echo 
implode(', '$funcs).PHP_EOL;
    echo 
'</td></tr>'.PHP_EOL;
}
echo 
'</table><br />'.PHP_EOL;
echo 
'</div></body></html>'.PHP_EOL;
$extinfo ob_get_contents();
ob_end_clean();

//OUTPUT
echo $phpinfo.$hr.$extinfo;

?>

webmaster at askapache dot com (2008-12-05 20:48:21)

I wanted a simple *function* to convert the output of phpinfo into an array.  Here's what I came up with thanks to alot of the previous authors tips, and the source file: php-5.2.6/ext/standard/info.c

Call this function like phpinfo_array() prints the array, phpinfo_array(1) returns the array for your own processing.

== Sample Output ==
[PHP Configuration] => Array
 (
  [PHP Version] => 5.2.6
  [PHP Egg] => PHPE9568F34-D428-11d2-A769-00AA001ACF42
  [System] => Linux askapache 2.6.22.19-grsec3
  [Build Date] => Nov 11 2008 13:09:07
  [Configure Command] =>  ./configure --prefix=/home/grsec/bin/php 
  [Server API] => FastCGI

  [IPv6 Support] => enabled
 [Zend Egg] => PHPE9568F35-D428-11d2-A769-00AA001ACF42
  [PHP Credits Egg] => PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000
 )

[mbstring] => Array
 (
  [mbstring.http_input] => pass
  [mbstring.internal_encoding] => Array
    (
     [0] => ISO-8859-1
     [1] => no value
    )

  [mbstring.language] => neutral
   )

[mcrypt] => Array
 (
  [Version] => 3.5.7
  [Api No] => 20031217
 )

<?php
function phpinfo_array($return=false){
 
/* Andale!  Andale!  Yee-Hah! */
 
ob_start(); 
 
phpinfo(-1);
 
 
$pi preg_replace(
 array(
'#^.*<body>(.*)</body>.*$#ms''#<h2>PHP License</h2>.*$#ms',
 
'#<h1>Configuration</h1>#',  "#\r?\n#""#</(h1|h2|h3|tr)>#"'# +<#',
 
"#[ \t]+#"'#&nbsp;#''#  +#''# class=".*?"#''%&#039;%',
  
'#<tr>(?:.*?)" src="(?:.*?)=(.*?)" alt="PHP Logo" /></a>'
  
.'<h1>PHP Version (.*?)</h1>(?:\n+?)</td></tr>#',
  
'#<h1><a href="(?:.*?)\?=(.*?)">PHP Credits</a></h1>#',
  
'#<tr>(?:.*?)" src="(?:.*?)=(.*?)"(?:.*?)Zend Engine (.*?),(?:.*?)</tr>#',
  
"# +#"'#<tr>#''#</tr>#'),
 array(
'$1''''''''</$1>' "\n"'<'' '' '' '''' ',
  
'<h2>PHP Configuration</h2>'."\n".'<tr><td>PHP Version</td><td>$2</td></tr>'.
  
"\n".'<tr><td>PHP Egg</td><td>$1</td></tr>',
  
'<tr><td>PHP Credits Egg</td><td>$1</td></tr>',
  
'<tr><td>Zend Engine</td><td>$2</td></tr>' "\n" .
  
'<tr><td>Zend Egg</td><td>$1</td></tr>'' ''%S%''%E%'),
 
ob_get_clean());

 
$sections explode('<h2>'strip_tags($pi'<h2><th><td>'));
 unset(
$sections[0]);

 
$pi = array();
 foreach(
$sections as $section){
   
$n substr($section0strpos($section'</h2>'));
   
preg_match_all(
   
'#%S%(?:<td>(.*?)</td>)?(?:<td>(.*?)</td>)?(?:<td>(.*?)</td>)?%E%#',
     
$section$askapachePREG_SET_ORDER);
   foreach(
$askapache as $m)
       
$pi[$n][$m[1]]=(!isset($m[3])||$m[2]==$m[3])?$m[2]:array_slice($m,2);
 }

 return (
$return === false) ? print_r($pi) : $pi;
}

?>

Phelon Dudras (2008-11-28 01:26:30)

A simple method to style your own phpinfo() output.

<style type="text/css">
#phpinfo {}
#phpinfo pre {}
#phpinfo a:link {}
#phpinfo a:hover {}
#phpinfo table {}
#phpinfo .center {}
#phpinfo .center table {}
#phpinfo .center th {}
#phpinfo td, th {}
#phpinfo h1 {}
#phpinfo h2 {}
#phpinfo .p {}
#phpinfo .e {}
#phpinfo .h {}
#phpinfo .v {}
#phpinfo .vr {}
#phpinfo img {}
#phpinfo hr {}
</style>

<div id="phpinfo">
<?php

ob_start 
() ;
phpinfo () ;
$pinfo ob_get_contents () ;
ob_end_clean () ;

// the name attribute "module_Zend Optimizer" of an anker-tag is not xhtml valide, so replace it with "module_Zend_Optimizer"
echo ( str_replace "module_Zend Optimizer""module_Zend_Optimizer"preg_replace '%^.*<body>(.*)</body>.*$%ms''$1'$pinfo ) ) ) ;

?>
</div>

bcofer at gmail dot com (2008-11-24 21:19:27)

My hosting company doesn't let me edit my php.ini file, but I wanted most of the same values, so I adapted one of the above posts to let me convert the information from phpinfo into a page where so can just copy and paste the info into a new php.ini file.

<?php
ob_start
();
phpinfo(INFO_CONFIGURATION);
$phpinfo = array('phpinfo' => array());
if(
preg_match_all('#(?:<h2>(?:<a name=".*?">)?(.*?)(?:</a>)?</h2>)|(?:<tr(?: class=".*?")?><t[hd](?: class=".*?")?>(.*?)\s*</t[hd]>(?:<t[hd](?: class=".*?")?>(.*?)\s*</t[hd]>(?:<t[hd](?: class=".*?")?>(.*?)\s*</t[hd]>)?)?</tr>)#s'ob_get_clean(), $matchesPREG_SET_ORDER))
    foreach(
$matches as $match)
        if(
strlen($match[1]))
            
$phpinfo[$match[1]] = array();
        elseif(isset(
$match[3]))
            
$phpinfo[end(array_keys($phpinfo))][$match[2]] = isset($match[4]) ? array($match[3], $match[4]) : $match[3];
        else
            
$phpinfo[end(array_keys($phpinfo))][] = $match[2];
?>

<?php
    
foreach($phpinfo as $name => $section) {
         foreach(
$section as $key => $val) {
            if(
is_array($val))
                echo 
"$key = $val[0]<br>";
            elseif(
is_string($key))
                echo 
"$key = $val<br>";
            else
                echo 
"$val<br>";
        }
        echo 
"\n";
    }
?>

jon at sitewizard dot ca (2008-07-05 19:54:57)

To extract all of the data from phpinfo into a nested array:
<?php
ob_start
();
phpinfo();
$phpinfo = array('phpinfo' => array());
if(
preg_match_all('#(?:<h2>(?:<a name=".*?">)?(.*?)(?:</a>)?</h2>)|(?:<tr(?: class=".*?")?><t[hd](?: class=".*?")?>(.*?)\s*</t[hd]>(?:<t[hd](?: class=".*?")?>(.*?)\s*</t[hd]>(?:<t[hd](?: class=".*?")?>(.*?)\s*</t[hd]>)?)?</tr>)#s'ob_get_clean(), $matchesPREG_SET_ORDER))
    foreach(
$matches as $match)
        if(
strlen($match[1]))
            
$phpinfo[$match[1]] = array();
        elseif(isset(
$match[3]))
            
$phpinfo[end(array_keys($phpinfo))][$match[2]] = isset($match[4]) ? array($match[3], $match[4]) : $match[3];
        else
            
$phpinfo[end(array_keys($phpinfo))][] = $match[2];
?>

Some examples of using individual values from the array:

<?php
    
echo "System: {$phpinfo['phpinfo']['System']}<br />\n";
    echo 
"Safe Mode: {$phpinfo['PHP Core']['safe_mode'][0]}<br />\n";
    echo 
"License: {$phpinfo['PHP License'][0]}<br />\n";
?>

To display everything:

<?php
    
foreach($phpinfo as $name => $section) {
        echo 
"<h3>$name</h3>\n<table>\n";
        foreach(
$section as $key => $val) {
            if(
is_array($val))
                echo 
"<tr><td>$key</td><td>$val[0]</td><td>$val[1]</td></tr>\n";
            elseif(
is_string($key))
                echo 
"<tr><td>$key</td><td>$val</td></tr>\n";
            else
                echo 
"<tr><td>$val</td></tr>\n";
        }
        echo 
"</table>\n";
    }
?>

Note: In order to properly retrieve all of the data, the regular expression matches table headers as well as table data, resulting in 'Local Value' and 'Global Value' showing up as 'Directive' entries.

yurkins (2008-06-23 07:24:26)

big thanx 2 Mardy dot Hutchinson at gmail dot com
very good!

some fixes to correct result displaying:
1. we need to trim $matches [1], 'cause there can be empty lines;
2. not bad to remove <body> tag 'cause styles for it not apply correctly...
3. ...and change styles a little (remove "body" selector)

we need to change two lines:

<?php
preg_match 
('%<style type="text/css">(.*?)</style>.*?(<body>.*</body>)%s'ob_get_clean(), $matches);
?>
to
<?php
preg_match 
('%<style type="text/css">(.*?)</style>.*?<body>(.*?)</body>%s'ob_get_clean(), $matches);
?>

and

<?php
preg_split
'/\n/'$matches[1] )
?>
to
<?php
preg_split
'/\n/'trim(preg_replace"/\nbody/""\n"$matches[1])) )
?>

That's all! Now we have a really flexible addition to phpinfo();

Mardy dot Hutchinson at gmail dot com (2007-09-09 15:27:27)

Embedding phpinfo within your page, that already has style information:

The phpinfo output is wrapped within a <div class='phpinfodisplay'>, and we privatize all the style selectors that phpinfo() creates.

Yes, we cheat on preparing the selector list.

<?php
ob_start
();
phpinfo();

preg_match ('%<style type="text/css">(.*?)</style>.*?(<body>.*</body>)%s'ob_get_clean(), $matches);

# $matches [1]; # Style information
# $matches [2]; # Body information

echo "<div class='phpinfodisplay'><style type='text/css'>\n",
    
join"\n",
        
array_map(
            
create_function(
                
'$i',
                
'return ".phpinfodisplay " . preg_replace( "/,/", ",.phpinfodisplay ", $i );'
                
),
            
preg_split'/\n/'$matches[1] )
            )
        ),
    
"</style>\n",
    
$matches[2],
    
"\n</div>\n";
?>

Perhaps one day the phpinfo() function will be modified to output such a safe string on its own.

Andrew dot Boag at catalyst dot net dot nz (2007-09-09 00:47:00)

One note on the above functions for cleaning up the phpinfo() HTML and throwing it into an array data structure. In order to catch all of the info tidbits the preg_match_all has to be tweaked to deal with 2 and 3 column tables.

I have changed the preg_match_all() here so that the last <td></td> is optional

<?php
function parsePHPConfig() {
    
ob_start();
    
phpinfo(-1);
    
$s ob_get_contents();
    
ob_end_clean();
    
$a $mtc = array();
    if (
preg_match_all('/<tr><td class="e">(.*?)<\/td><td class="v">(.*?)<\/td>(:?<td class="v">(.*?)<\/td>)?<\/tr>/',$s,$mtc,PREG_SET_ORDER))
        foreach(
$mtc as $v){
            if(
$v[2] == '<i>no value</i>') continue;
            
$a[$v[1]] = $v[2];
        }
    }
    return 
$a;
}
?>

jo at durchholz dot org (2007-08-14 02:43:50)

Here's a variant of "print it without headers, but include the style information":

<?php
ob_start
();
phpinfo();
$info ob_get_clean ();

$matches = array ();
$i preg_match ('%(<style type="text/css">.*</style>).*<body>(.*)</body>%s'$info$matches);

print 
$matches [1]; # Style information
print $matches [2]; # Body

dev at cheechtech dot com (2007-01-07 01:35:09)

same as above for configuration variables

<?php
function parsePHPConfig() {
    
ob_start();
    
phpinfo(INFO_CONFIGURATION);
    
$s ob_get_contents();
    
ob_end_clean();
    
$a $mtc = array();
    if (
preg_match_all('/<tr><td class="e">(.*?)<\/td><td class="v">(.*?)<\/td><td class="v">(.*?)<\/td><\/tr>/',$s,$mtc,PREG_SET_ORDER)) {
        foreach(
$mtc as $v){
            if(
$v[2] == '<i>no value</i>') continue;
            
$a[$v[1]] = $v[2];
        }
    }
    return 
$a;
}
?>

jb2386 at hotmail dot com (2006-10-10 21:29:38)

This is a slight modification to the previous code by "code at adspeed dot com" that extracts the PHP modules as an array. I used it on PHP 4.1.2 and it failed as the <h2> tags also had an align="center". So this update changes the regex for those tags:

<?php

/* parse php modules from phpinfo */

function parsePHPModules() {
 
ob_start();
 
phpinfo(INFO_MODULES);
 
$s ob_get_contents();
 
ob_end_clean();

 
$s strip_tags($s,'<h2><th><td>');
 
$s preg_replace('/<th[^>]*>([^<]+)<\/th>/',"<info>\\1</info>",$s);
 
$s preg_replace('/<td[^>]*>([^<]+)<\/td>/',"<info>\\1</info>",$s);
 
$vTmp preg_split('/(<h2[^>]*>[^<]+<\/h2>)/',$s,-1,PREG_SPLIT_DELIM_CAPTURE);
 
$vModules = array();
 for (
$i=1;$i<count($vTmp);$i++) {
  if (
preg_match('/<h2[^>]*>([^<]+)<\/h2>/',$vTmp[$i],$vMat)) {
   
$vName trim($vMat[1]);
   
$vTmp2 explode("\n",$vTmp[$i+1]);
   foreach (
$vTmp2 AS $vOne) {
   
$vPat '<info>([^<]+)<\/info>';
   
$vPat3 "/$vPat\s*$vPat\s*$vPat/";
   
$vPat2 "/$vPat\s*$vPat/";
   if (
preg_match($vPat3,$vOne,$vMat)) { // 3cols
     
$vModules[$vName][trim($vMat[1])] = array(trim($vMat[2]),trim($vMat[3]));
   } elseif (
preg_match($vPat2,$vOne,$vMat)) { // 2cols
     
$vModules[$vName][trim($vMat[1])] = trim($vMat[2]);
   }
   }
  }
 }
 return 
$vModules;
}
?>

php at SPAMMENOT dot tof2k dot com (2006-09-10 03:32:15)

To obtain a phpinfo without headers (and css) :

<?php
ob_start
();                                                                                                        
phpinfo();                                                                                                         
$info ob_get_contents();                                                                                         
ob_end_clean();                                                                                                    

$info preg_replace('%^.*<body>(.*)</body>.*$%ms''$1'$info);
?>

You can then style your tables & headings :)

code at adspeed dot com (2005-12-09 15:31:26)

This function parses the phpinfo output to get details about a PHP module. 

<?php
/** parse php modules from phpinfo */
function parsePHPModules() {
 
ob_start();
 
phpinfo(INFO_MODULES);
 
$s ob_get_contents();
 
ob_end_clean();
 
 
$s strip_tags($s,'<h2><th><td>');
 
$s preg_replace('/<th[^>]*>([^<]+)<\/th>/',"<info>\\1</info>",$s);
 
$s preg_replace('/<td[^>]*>([^<]+)<\/td>/',"<info>\\1</info>",$s);
 
$vTmp preg_split('/(<h2>[^<]+<\/h2>)/',$s,-1,PREG_SPLIT_DELIM_CAPTURE);
 
$vModules = array();
 for (
$i=1;$i<count($vTmp);$i++) {
  if (
preg_match('/<h2>([^<]+)<\/h2>/',$vTmp[$i],$vMat)) {
   
$vName trim($vMat[1]);
   
$vTmp2 explode("\n",$vTmp[$i+1]);
   foreach (
$vTmp2 AS $vOne) {
    
$vPat '<info>([^<]+)<\/info>';
    
$vPat3 "/$vPat\s*$vPat\s*$vPat/";
    
$vPat2 "/$vPat\s*$vPat/";
    if (
preg_match($vPat3,$vOne,$vMat)) { // 3cols
     
$vModules[$vName][trim($vMat[1])] = array(trim($vMat[2]),trim($vMat[3])); 
    } elseif (
preg_match($vPat2,$vOne,$vMat)) { // 2cols
     
$vModules[$vName][trim($vMat[1])] = trim($vMat[2]); 
    } 
   } 
  } 
 } 
 return 
$vModules;
}
?>

Sample Output:
[gd] => Array
(
  [GD Support] => enabled
  [GD Version] => bundled (2.0.28 compatible)
  [FreeType Support] => enabled
  [FreeType Linkage] => with freetype
  [FreeType Version] => 2.1.9
  [T1Lib Support] => enabled
  [GIF Read Support] => enabled
  [GIF Create Support] => enabled
  [JPG Support] => enabled
  [PNG Support] => enabled
  [WBMP Support] => enabled
  [XBM Support] => enabled
)

[date] => Array (
  [date/time support] => enabled
  [Timezone Database Version] => 2005.14
  [Timezone Database] => internal
  [Default timezone] => America/Los_Angeles
  [Directive] => Array (
     [0] => Local Value
     [1] => Master Value
  )
  [date.timezone] => Array (
     [0] => no value
     [1] => no value
  )
 )


<?php
/** get a module setting */
function getModuleSetting($pModuleName,$pSetting) {
 
$vModules parsePHPModules();
 return 
$vModules[$pModuleName][$pSetting];
}
?>

Example: getModuleSetting('gd','GD Version'); returns "bundled (2.0.28 compatible)"

Helpful Harry (2005-10-06 08:38:58)

check out this cool and fantastic colourful phpinfo()!

<?php

ob_start
();
phpinfo();
$phpinfo ob_get_contents();
ob_end_clean();

preg_match_all('/#[0-9a-fA-F]{6}/'$phpinfo$rawmatches);
for (
$i 0$i count($rawmatches[0]); $i++)
   
$matches[] = $rawmatches[0][$i];
$matches array_unique($matches);

$hexvalue '0123456789abcdef';

$j 0;
foreach (
$matches as $match)
{

   
$r '#';
   
$searches[$j] = $match;
   for (
$i 0$i 6$i++)
      
$r .= substr($hexvaluemt_rand(015), 1);
   
$replacements[$j++] = $r;
   unset(
$r);
}

for (
$i 0$i count($searches); $i++)
   
$phpinfo str_replace($searches$replacements$phpinfo);
echo 
$phpinfo;
?>

易百教程