mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
* Finalizing the PHP version of SAPI. Support POST and cookies among other things.
* Fully implement ISAPI support - POST and cookies among other things. * Almost completely rewrote phpinfo(). Allow modules to easily display their information in phpinfo() without modifying phpinfo() itself (prototype for the module info function was changed, thus the large amount of updated module files). * Initial extended SAPI support for Apache, completely untested. * CGI now uses SAPI fully as well.
This commit is contained in:
parent
91cf2e59c4
commit
bc415d5a88
56 changed files with 538 additions and 342 deletions
|
@ -102,7 +102,7 @@ int php3_minit_xml(INIT_FUNC_ARGS);
|
|||
int php3_rinit_xml(INIT_FUNC_ARGS);
|
||||
int php3_mshutdown_xml(SHUTDOWN_FUNC_ARGS);
|
||||
int php3_rshutdown_xml(SHUTDOWN_FUNC_ARGS);
|
||||
void php3_info_xml(void);
|
||||
void php3_info_xml(ZEND_MODULE_INFO_FUNC_ARGS);
|
||||
|
||||
static xml_parser *xml_get_parser(int, const char *, HashTable *);
|
||||
static void xml_destroy_parser(xml_parser *);
|
||||
|
@ -273,7 +273,7 @@ int php3_rshutdown_xml(SHUTDOWN_FUNC_ARGS)
|
|||
/* }}} */
|
||||
/* {{{ php3_info_xml() */
|
||||
|
||||
void php3_info_xml()
|
||||
void php3_info_xml(ZEND_MODULE_INFO_FUNC_ARGS)
|
||||
{
|
||||
PUTS("XML support active");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue