本文整理汇总了C++中PHP_MINFO函数的典型用法代码示例。如果您正苦于以下问题:C++ PHP_MINFO函数的具体用法?C++ PHP_MINFO怎么用?C++ PHP_MINFO使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了PHP_MINFO函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: PHP_MINIT
};
/* }}} */
/* {{{ shurrik_module_entry
*/
zend_module_entry shurrik_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"shurrik",
shurrik_functions,
PHP_MINIT(shurrik),
PHP_MSHUTDOWN(shurrik),
PHP_RINIT(shurrik), /* Replace with NULL if there's nothing to do at request start */
PHP_RSHUTDOWN(shurrik), /* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(shurrik),
#if ZEND_MODULE_API_NO >= 20010901
"0.1", /* Replace with version number for your extension */
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_SHURRIK
ZEND_GET_MODULE(shurrik)
#endif
int shurrik_init(){
int server_fifo_fd;
*shurrik_data.some_data = "";
开发者ID:rryqszq4,项目名称:shurrik,代码行数:31,代码来源:shurrik.c
示例2: ZEND_END_ARG_INFO
ZEND_END_ARG_INFO()
/* }}} */
/* {{{ lua_module_entry
*/
zend_module_entry lua_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"lua",
NULL,
PHP_MINIT(lua),
PHP_MSHUTDOWN(lua),
NULL,
NULL,
PHP_MINFO(lua),
#if ZEND_MODULE_API_NO >= 20010901
PHP_LUA_VERSION,
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_LUA
ZEND_GET_MODULE(lua)
#endif
/** {{{ static void php_lua_stack_dump(lua_State* L)
* just for debug
*/
#ifdef PHP_LUA_DEBUG
开发者ID:Bestfly,项目名称:php-lua,代码行数:31,代码来源:lua.c
示例3: PHP_MINIT
};
/* }}} */
/* {{{ phproto_module_entry
*/
zend_module_entry phproto_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"phproto",
phproto_functions,
PHP_MINIT(phproto),
PHP_MSHUTDOWN(phproto),
PHP_RINIT(phproto), /* Replace with NULL if there's nothing to do at request start */
PHP_RSHUTDOWN(phproto), /* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(phproto),
#if ZEND_MODULE_API_NO >= 20010901
"0.1", /* Replace with version number for your extension */
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_PHPROTO
ZEND_GET_MODULE(phproto)
#endif
/* {{{ PHP_INI
*/
/* Remove comments and fill if you need to have entries in php.ini
PHP_INI_BEGIN()
开发者ID:zined,项目名称:phproto,代码行数:31,代码来源:phproto.c
示例4: ZEND_DECLARE_MODULE_GLOBALS
/* }}} */
ZEND_DECLARE_MODULE_GLOBALS(ereg)
static PHP_GINIT_FUNCTION(ereg);
static PHP_GSHUTDOWN_FUNCTION(ereg);
/* {{{ Module entry */
zend_module_entry ereg_module_entry = {
STANDARD_MODULE_HEADER,
"ereg",
ereg_functions,
NULL,
NULL,
NULL,
NULL,
PHP_MINFO(ereg),
NO_VERSION_YET,
PHP_MODULE_GLOBALS(ereg),
PHP_GINIT(ereg),
PHP_GSHUTDOWN(ereg),
NULL,
STANDARD_MODULE_PROPERTIES_EX
};
/* }}} */
/* {{{ COMPILE_DL_EREG */
#ifdef COMPILE_DL_EREG
ZEND_GET_MODULE(ereg)
#endif
/* }}} */
开发者ID:KomaBeyond,项目名称:php-src,代码行数:30,代码来源:ereg.c
示例5: php_info_print_table_header
php_info_print_table_header(2, "Default max frame size", DEFAULT_FRAME_MAX);
php_info_print_table_header(2, "Default heartbeats interval", DEFAULT_HEARTBEAT);
DISPLAY_INI_ENTRIES();
} /* }}} */
/* {{{ amqp_module_entry
*/
zend_module_entry amqp_module_entry = {
STANDARD_MODULE_HEADER,
"amqp",
amqp_functions,
PHP_MINIT(amqp),
PHP_MSHUTDOWN(amqp),
NULL,
PHP_RSHUTDOWN(amqp),
PHP_MINFO(amqp),
PHP_AMQP_VERSION,
PHP_MODULE_GLOBALS(amqp),
PHP_GINIT(amqp),
NULL,
NULL,
STANDARD_MODULE_PROPERTIES_EX
};
/* }}} */
#ifdef COMPILE_DL_AMQP
ZEND_GET_MODULE(amqp)
#endif
int php_amqp_error(amqp_rpc_reply_t reply, char **message, amqp_connection_resource *connection_resource, amqp_channel_resource *channel_resource TSRMLS_DC)
{
开发者ID:dedalozzo,项目名称:php-amqp,代码行数:31,代码来源:amqp.c
示例6: PHP_MINIT
};
/* }}} */
/* {{{ xlsxwriter_module_entry
*/
zend_module_entry xlsxwriter_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"xlsxwriter",
xlsxwriter_functions,
PHP_MINIT(xlsxwriter),
PHP_MSHUTDOWN(xlsxwriter),
NULL, /* Replace with NULL if there's nothing to do at request start */
NULL, /* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(xlsxwriter),
#if ZEND_MODULE_API_NO >= 20010901
PHP_XLSXWRITER_VERSION,
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_XLSXWRITER
ZEND_GET_MODULE(xlsxwriter)
#endif
/* {{{ PHP_INI
*/
/* Remove comments and fill if you need to have entries in php.ini
PHP_INI_BEGIN()
开发者ID:friparia,项目名称:php_fast_xlsxwriter,代码行数:31,代码来源:xlsxwriter.c
示例7: PHP_FE
PHP_FE(com_load_typelib, arginfo_com_load_typelib)
PHP_FE(com_get_active_object, arginfo_com_get_active_object)
{ NULL, NULL, NULL }
};
/* {{{ com_dotnet_module_entry
*/
zend_module_entry com_dotnet_module_entry = {
STANDARD_MODULE_HEADER,
"com_dotnet",
com_dotnet_functions,
PHP_MINIT(com_dotnet),
PHP_MSHUTDOWN(com_dotnet),
PHP_RINIT(com_dotnet),
PHP_RSHUTDOWN(com_dotnet),
PHP_MINFO(com_dotnet),
"0.1",
PHP_MODULE_GLOBALS(com_dotnet),
PHP_GINIT(com_dotnet),
NULL,
NULL,
STANDARD_MODULE_PROPERTIES_EX
};
/* }}} */
#ifdef COMPILE_DL_COM_DOTNET
ZEND_GET_MODULE(com_dotnet)
#endif
/* {{{ PHP_INI
*/
开发者ID:practicalweb,项目名称:php-src,代码行数:31,代码来源:com_extension.c
示例8: PHP_FALIAS
PHP_FALIAS(apache_response_headers, nsapi_response_headers, arginfo_nsapi_response_headers) /* compatibility */
{NULL, NULL, NULL}
};
/* }}} */
/* {{{ nsapi_module_entry
*/
zend_module_entry nsapi_module_entry = {
STANDARD_MODULE_HEADER,
"nsapi",
nsapi_functions,
PHP_MINIT(nsapi),
PHP_MSHUTDOWN(nsapi),
NULL,
NULL,
PHP_MINFO(nsapi),
NO_VERSION_YET,
STANDARD_MODULE_PROPERTIES
};
/* }}} */
/* {{{ PHP_INI
*/
PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("nsapi.read_timeout", "60", PHP_INI_ALL, OnUpdateLong, read_timeout, zend_nsapi_globals, nsapi_globals)
PHP_INI_END()
/* }}} */
/* newer servers hide this functions from the programmer so redefine the functions dynamically
thanks to Chris Elving from Sun for the function declarations */
typedef int (*nsapi_servact_prototype)(Session *sn, Request *rq);
开发者ID:practicalweb,项目名称:php-src,代码行数:31,代码来源:nsapi.c
示例9: PHP_FE
zend_function_entry fribidi_functions[] = {
PHP_FE(fribidi_log2vis, NULL)
PHP_FE(fribidi_charset_info, NULL)
PHP_FE(fribidi_get_charsets, NULL)
{NULL, NULL, NULL}
};
zend_module_entry fribidi_module_entry = {
STANDARD_MODULE_HEADER,
"fribidi",
fribidi_functions,
PHP_MINIT(fribidi),
PHP_MSHUTDOWN(fribidi),
NULL,
NULL,
PHP_MINFO(fribidi),
PHP_FRIBIDI_VERSION,
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_FRIBIDI
ZEND_GET_MODULE(fribidi)
#endif
/* {{{ PHP_MINIT_FUNCTION
*/
PHP_MINIT_FUNCTION(fribidi)
{
/* Charsets */
REGISTER_LONG_CONSTANT("FRIBIDI_CHARSET_UTF8", FRIBIDI_CHAR_SET_UTF8, CONST_CS | CONST_PERSISTENT);
REGISTER_LONG_CONSTANT("FRIBIDI_CHARSET_8859_6", FRIBIDI_CHAR_SET_ISO8859_6, CONST_CS | CONST_PERSISTENT);
开发者ID:behnam,项目名称:pecl-internationalization-fribidi,代码行数:31,代码来源:fribidi.c
示例10: PHP_FE
PHP_FE(mailparse_uudecode_all, NULL)
PHP_FE(mailparse_test, NULL)
{NULL, NULL, NULL}
};
zend_module_entry mailparse_module_entry = {
STANDARD_MODULE_HEADER,
"mailparse",
mailparse_functions,
PHP_MINIT(mailparse),
PHP_MSHUTDOWN(mailparse),
PHP_RINIT(mailparse),
PHP_RSHUTDOWN(mailparse),
PHP_MINFO(mailparse),
PHP_MAILPARSE_VERSION,
STANDARD_MODULE_PROPERTIES
};
ZEND_DECLARE_MODULE_GLOBALS(mailparse)
#ifdef COMPILE_DL_MAILPARSE
ZEND_GET_MODULE(mailparse)
#endif
ZEND_RSRC_DTOR_FUNC(mimepart_dtor)
{
php_mimepart *part = rsrc->ptr;
if (part->parent == NULL && part->rsrc_id) {
开发者ID:wikimedia,项目名称:operations-debs-php-mailparse,代码行数:31,代码来源:mailparse.c
示例11: PHP_MINIT
};
/* }}} */
/* {{{ ip2city_module_entry
*/
zend_module_entry ip2city_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"ip2city",
ip2city_functions,
PHP_MINIT(ip2city),
PHP_MSHUTDOWN(ip2city),
PHP_RINIT(ip2city), /* Replace with NULL if there's nothing to do at request start */
PHP_RSHUTDOWN(ip2city), /* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(ip2city),
#if ZEND_MODULE_API_NO >= 20010901
"0.1", /* Replace with version number for your extension */
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_IP2CITY
ZEND_GET_MODULE(ip2city)
#endif
/* {{{ PHP_INI
*/
PHP_INI_BEGIN()
PHP_INI_ENTRY("ip2city.data", "foobar", PHP_INI_ALL, NULL)
开发者ID:echohit,项目名称:ip2city,代码行数:31,代码来源:ip2city.c
示例12: PHP_MINIT
zend_module_entry swoole_module_entry =
{
#if ZEND_MODULE_API_NO >= 20050922
STANDARD_MODULE_HEADER_EX,
NULL,
NULL,
#else
STANDARD_MODULE_HEADER,
#endif
"swoole",
swoole_functions,
PHP_MINIT(swoole),
PHP_MSHUTDOWN(swoole),
PHP_RINIT(swoole), //RINIT
PHP_RSHUTDOWN(swoole), //RSHUTDOWN
PHP_MINFO(swoole),
PHP_SWOOLE_VERSION,
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_SWOOLE
ZEND_GET_MODULE(swoole)
#endif
/* {{{ PHP_INI
*/
PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("swoole.aio_thread_num", "2", PHP_INI_ALL, OnUpdateLong, aio_thread_num, zend_swoole_globals, swoole_globals)
STD_PHP_INI_ENTRY("swoole.display_errors", "2", PHP_INI_ALL, OnUpdateBool, display_errors, zend_swoole_globals, swoole_globals)
STD_PHP_INI_ENTRY("swoole.message_queue_key", "0", PHP_INI_ALL, OnUpdateString, message_queue_key, zend_swoole_globals, swoole_globals)
开发者ID:denofiend,项目名称:swoole-src,代码行数:31,代码来源:swoole.c
示例13: PHP_MINIT
/* {{{ pdo_mysql_module_entry */
zend_module_entry pdo_mysql_module_entry = {
#if ZEND_MODULE_API_NO >= 20050922
STANDARD_MODULE_HEADER_EX, NULL,
pdo_mysql_deps,
#else
STANDARD_MODULE_HEADER,
#endif
"pdo_mysql",
pdo_mysql_functions,
PHP_MINIT(pdo_mysql),
PHP_MSHUTDOWN(pdo_mysql),
NULL,
NULL,
PHP_MINFO(pdo_mysql),
"1.0.2",
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_PDO_MYSQL
ZEND_GET_MODULE(pdo_mysql)
#endif
/* true global environment */
/* {{{ PHP_MINIT_FUNCTION
*/
PHP_MINIT_FUNCTION(pdo_mysql)
{
开发者ID:kuangrenxing,项目名称:yiiblognew3,代码行数:30,代码来源:pdo_mysql.c
示例14: PHP_MINIT
};
/* }}} */
/* {{{ hello_module_entry
*/
zend_module_entry hello_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"hello",
hello_functions,
PHP_MINIT(hello),
PHP_MSHUTDOWN(hello),
PHP_RINIT(hello),
PHP_RSHUTDOWN(hello),
PHP_MINFO(hello),
#if ZEND_MODULE_API_NO >= 20010901
"0.0.2",
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_HELLO
ZEND_GET_MODULE(hello)
#endif
/* {{{ PHP_INI
*/
PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("hello.direction", "1", PHP_INI_ALL, OnUpdateBool, direction, zend_hello_globals, hello_globals)
开发者ID:liangshan,项目名称:php-hello,代码行数:31,代码来源:hello.c
示例15: PHP_MINIT
/* {{{ xsl_module_entry
*/
zend_module_entry xsl_module_entry = {
#if ZEND_MODULE_API_NO >= 20050617
STANDARD_MODULE_HEADER_EX, NULL,
xsl_deps,
#elif ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"xsl",
xsl_functions,
PHP_MINIT(xsl),
PHP_MSHUTDOWN(xsl),
PHP_RINIT(xsl), /* Replace with NULL if there's nothing to do at request start */
PHP_RSHUTDOWN(xsl), /* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(xsl),
#if ZEND_MODULE_API_NO >= 20010901
"0.1", /* Replace with version number for your extension */
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_XSL
ZEND_GET_MODULE(xsl)
#endif
/* {{{ xsl_objects_free_storage */
void xsl_objects_free_storage(void *object TSRMLS_DC)
{
xsl_object *intern = (xsl_object *)object;
开发者ID:nishisan,项目名称:scripts,代码行数:31,代码来源:php_xsl.c
示例16: PHP_FE
PHP_FE(dba_nextkey, NULL)
PHP_FE(dba_optimize, NULL)
PHP_FE(dba_sync, NULL)
{NULL,NULL,NULL}
};
static PHP_MINIT_FUNCTION(dba);
static PHP_MSHUTDOWN_FUNCTION(dba);
static PHP_MINFO_FUNCTION(dba);
zend_module_entry dba_module_entry = {
"dba", dba_functions,
PHP_MINIT(dba),
PHP_MSHUTDOWN(dba),
NULL, NULL,
PHP_MINFO(dba),
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_DBA
ZEND_GET_MODULE(dba)
#endif
typedef struct dba_handler {
char *name;
int (*open)(dba_info *);
void (*close)(dba_info *);
char* (*fetch)(dba_info *, char *, int, int *);
int (*update)(dba_info *, char *, int, char *, int, int);
int (*exists)(dba_info *, char *, int);
int (*delete)(dba_info *, char *, int);
开发者ID:jehurodrig,项目名称:PHP-4.0.6-16-07-2009,代码行数:31,代码来源:dba.c
示例17: RETURN_LONG
RETURN_FALSE;
} else {
RETURN_LONG(match);
}
}
/* }}} */
/* {{{ ssdeep_module_entry
*/
zend_module_entry ssdeep_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
PHP_SSDEEP_EXTNAME,
ssdeep_functions,
NULL /* PHP_MINIT(ssdeep) */,
NULL /* PHP_MSHUTDOWN(ssdeep) */,
NULL /* PHP_RINIT(ssdeep) */, /* Replace with NULL if there's nothing to do at request start */
NULL /* PHP_RSHUTDOWN(ssdeep)*/, /* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(ssdeep),
#if ZEND_MODULE_API_NO >= 20010901
PHP_SSDEEP_VERSION,
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_SSDEEP
ZEND_GET_MODULE(ssdeep)
#endif
开发者ID:php,项目名称:pecl-text-ssdeep,代码行数:30,代码来源:ssdeep.c
示例18: PHP_MINIT
#endif
zend_module_entry xml_module_entry = {
#ifdef LIBXML_EXPAT_COMPAT
STANDARD_MODULE_HEADER_EX, NULL,
xml_deps,
#else
STANDARD_MODULE_HEADER,
#endif
"xml", /* extension name */
xml_functions, /* extension function list */
PHP_MINIT(xml), /* extension-wide startup function */
NULL, /* extension-wide shutdown function */
NULL, /* per-request startup function */
NULL, /* per-request shutdown function */
PHP_MINFO(xml), /* information function */
NO_VERSION_YET,
PHP_MODULE_GLOBALS(xml), /* globals descriptor */
PHP_GINIT(xml), /* globals ctor */
NULL, /* globals dtor */
NULL, /* post deactivate */
STANDARD_MODULE_PROPERTIES_EX
};
/* All the encoding functions are set to NULL right now, since all
* the encoding is currently done internally by expat/xmltok.
*/
xml_encoding xml_encodings[] = {
{ (XML_Char *)"ISO-8859-1", xml_decode_iso_8859_1, xml_encode_iso_8859_1 },
{ (XML_Char *)"US-ASCII", xml_decode_us_ascii, xml_encode_us_ascii },
{ (XML_Char *)"UTF-8", NULL, NULL },
开发者ID:forgotting,项目名称:php-src,代码行数:31,代码来源:xml.c
示例19: PHP_MINIT
}
const zend_function_entry git_functions[] = {
PHP_FE_END
};
zend_module_entry git_module_entry = {
STANDARD_MODULE_HEADER,
"git",
git_functions,
PHP_MINIT(git),
PHP_MSHUTDOWN(git),
PHP_RINIT(git),
PHP_RSHUTDOWN(git),
PHP_MINFO(git),
PHP_GIT_VERSION,
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_GIT
#ifdef ZTS
ZEND_TSRMLS_CACHE_DEFINE();
#endif
ZEND_GET_MODULE(git)
#endif
开发者ID:JesusTheHun,项目名称:php7-git,代码行数:28,代码来源:git.c
示例20: PHP_MINIT
};
/* }}} */
/* {{{ tokenizer_module_entry
*/
zend_module_entry tokenizer_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
"tokenizer",
tokenizer_functions,
PHP_MINIT(tokenizer),
NULL,
NULL,
NULL,
PHP_MINFO(tokenizer),
#if ZEND_MODULE_API_NO >= 20010901
"0.1", /* Replace with version number for your extension */
#endif
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_TOKENIZER
ZEND_GET_MODULE(tokenizer)
#endif
/* {{{ PHP_MINIT_FUNCTION
*/
PHP_MINIT_FUNCTION(tokenizer)
{
开发者ID:1stvamp,项目名称:php-src,代码行数:31,代码来源:tokenizer.c
注:本文中的PHP_MINFO函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论