Home | 简体中文 | 繁体中文 | 杂文 | 打赏(Donations) | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 知乎专栏 | Search | Email

20.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();