PHP SAPI CLI

436 ワード

 sapi_module_struct.startup

static int php_cli_startup(sapi_module_struct *sapi_module) /* {{{ */
{
    if (php_module_startup(sapi_module, NULL, 0)==FAILURE) {
        return FAILURE;
    }
    return SUCCESS;
}
sapi_module_struct.shutdown


int php_module_shutdown_wrapper(sapi_module_struct *sapi_globals)
{
   TSRMLS_FETCH();
    php_module_shutdown(TSRMLS_C);
    return SUCCESS;
}