php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #52715
Patch support-true-arg revision 2010-08-27 06:51 UTC by satya61229 at gmail dot com

Patch support-true-arg for Documentation problem Bug #52715

Patch version 2010-08-27 06:51 UTC

Return to Bug #52715 | Download this patch
Patch Revisions:

Developer: satya61229@gmail.com

echo(PHP_VERSION);
echo "<h3>PHP Loaded Extensions:</h3>";

function extFunctions($ext)
{
    $extFuncs = get_extension_funcs($ext);
    while(list($fid, $fname) = each($extFuncs))
    {
        echo " - " . ($fid + 1) . " $fname <br>";
    }
}

echo "| <a href='$_SERVER[PHP_SELF]'>Extensions Only</a> | <a href='$_SERVER[PHP_SELF]?expand=*'>Expand functions</a> |<br>";

$loaded = get_loaded_extensions(true);

while(list($id, $name) = each($loaded)) {
    echo "<b>" . ($id + 1) . " <a href='$_SERVER[PHP_SELF]?expand=$name#$name'><span id=$name>$name</span></a></b><br>";
	$expand = $_GET['expand'];
    if(isset($expand)) {
         if($expand == $name || $expand == "*") {
			extFunctions($name);
		 }
	}
}
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Nov 01 03:01:28 2024 UTC