Show Contents Previous Page Next Page Chapter 10 - C API Reference Guide, Part I / The Table API Here are a few miscellaneous table functions that don't fit into the previous categories: table *ap_overlay_tables (pool *p, const table *overlay, const table
*base)
table *new_table = _ap_overlay_tables(r->pool, my_headers, r->headers_out); array_header *ap_table_elts (table *t)
array_header *arr = ap_table_elts(my_table); int ap_is_empty_table (table *t)
if(!ap_is_empty_table(my_table)) { /* this table has one or more elements */ } void ap_clear_table (table *t)
ap_clear_table(my_table); Footnotes 2 Despite the differences between Perl hashes and Apache tables, the Perl API allows programmers to access tables via tied Perl hashes. See "The Apache::Table Class" in Chapter 9. Show Contents Previous Page Next PageCopyright © 1999 by O'Reilly & Associates, Inc. |
HIVE: All information for read only. Please respect copyright! |