Home | Mirror | SearchITEYE 博客 | OSChina 博客 | 51CTO 博客

第 5 章 Function

目录

5.1. 列出所有function
5.2. php.ini
5.2.1. ini_set
5.2.2. ini_get
5.3. PHP Option
5.4. 操作系统类型
5.5. 日期比较
5.6. rand()
5.7. header

5.1. 列出所有function

		
<?php

$extensions = get_loaded_extensions();
foreach($extensions as $each_ext)
{
	echo "\t<keyword>$each_ext, ";
	$ext_funcs = get_extension_funcs($each_ext);
	foreach($ext_funcs as $func)
	{
	   echo "$func, ";
	}
	echo "</keyword>\r\n";
}
?>
		
		
comments powered by Disqus