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

9.4. PHP_MINFO_FUNCTION

		
/* {{{ PHP_MINFO_FUNCTION
 */
PHP_MINFO_FUNCTION(netkiller)
{
        php_info_print_table_start();
        php_info_print_table_header(2, "netkiller support", "enabled");
        php_info_print_table_end();

        /* Remove comments if you have entries in php.ini
        DISPLAY_INI_ENTRIES();
        */
}
/* }}} */
		
		

表格增加一行

		
        php_info_print_table_start();
        php_info_print_table_header(2, "netkiller support", "enabled");
        php_info_print_table_row(2, "author", "Neo Chan");
        php_info_print_table_end();
		
		
comments powered by Disqus