Including Output in phpinfoPodręcznik PHPPoprzedniRozdział 36. Printing InformationNastępnyIncluding Output in phpinfo()
After creating a real module, you'll want to show information
about the module in phpinfo() (in addition to the
module name, which appears in the module list by default). PHP allows
you to create your own section in the phpinfo() output with the ZEND_MINFO() function. This function
should be placed in the module descriptor block (discussed earlier) and is
always called whenever a script calls phpinfo().
PHP automatically prints a section
in phpinfo() for you if you specify the ZEND_MINFO
function, including the module name in the heading. Everything else must be
formatted and printed by you.
Typically, you can print an HTML table header
using php_info_print_table_start() and then use the standard
functions php_info_print_table_header()
and php_info_print_table_row(). As arguments, both take the number of
columns (as integers) and the column contents (as strings). Listing 9.14 shows a source example; Figure 9.9 shows the output. To print the table footer, use php_info_print_table_end().
Rysunek 36-3.
Listing 9.14. Source code and screenshot for output in phpinfo().
php_info_print_table_start();
php_info_print_table_header(2, "First column", "Second column");
php_info_print_table_row(2, "Entry in first row", "Another entry");
php_info_print_table_row(2, "Just to fill", "another row here");
php_info_print_table_end();PoprzedniSpis treściNastępnyzend_error()Początek rozdziałuExecution Information
Wyszukiwarka
Podobne podstrony:
zend printingzend printing executionzend printing zend errorprinting howto pl 5printing softwareprinting howto pl 4function zend versionzend arguments variableprinting howto pl 6function zend logo guidprinting howto 3 obrkqk3bd7gpi3ys7thklyi4c5ur6u3csqt2vvyprinting howto 12 iizcwkqa3ivaohfbc676kdj6r7jr73yhxcmopciwięcej podobnych podstron