Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 知乎專欄 | Search | Email

3.3. 列出所有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";
}
?>