Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
php_ext.php
Package: Generateur_v13.rar [view]
Upload User: feiyaoda
Upload Date: 2016-11-21
Package Size: 9556k
Code Size: 1k
Category:
WEB Mail
Development Platform:
PHP
- <?php
- include ('config.php');
- std_header('PHP Extensions and function list');
- page_type('text');
- ?>
- <body bgcolor='#E1E4FA'>
- <table border=1 cellpadding=5 cellspacing=0 width=100%>
- <tr><td valign=top bgcolor=#AAAAAA width=150>
- <?php
- $extensions = get_loaded_extensions();
- asort ($extensions);
- foreach ($extensions as $id => $ext_name)
- {
- $func = get_extension_funcs($ext_name);
- $nb_func = count($func);
- $list .= "<a href="php_ext.php?ext=$ext_name">$ext_name</a> <small>($nb_func)</small><br>n";
- $total_func += $nb_func;
- }
- echo "<font face="verdana"><font size=+1>Extensions</font><br><small>extensions : ".count($extensions)."<br>functions : $total_func</small></font><br><br>n";
- echo $list;
- ?>
- </td>
- <td valign=top>
- <?php
- if (FALSE != $_GET['ext'])
- {
- $functions = get_extension_funcs($_GET['ext']);
- echo "<font face="verdana"><font size=+1>Functions of ".$_GET['ext']."</font> (".count($functions)." functions)</font><br><br>n";
- asort ($functions);
- foreach ($functions as $id => $func_name)
- {
- echo "<a href="http://www.php.net/$func_name" target="_blank">$func_name</a><br>n";
- }
- }
- ?>