本文整理汇总了C++中php_info_print_table_end函数的典型用法代码示例。如果您正苦于以下问题:C++ php_info_print_table_end函数的具体用法?C++ php_info_print_table_end怎么用?C++ php_info_print_table_end使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了php_info_print_table_end函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: php_info_webjames
static void php_info_webjames(ZEND_MODULE_INFO_FUNC_ARGS)
{
php_info_print_table_start();
php_info_print_table_row(2, "SAPI module version", WEBJAMES_SAPI_VERSION);
php_info_print_table_row(2, "WebJames version", WEBJAMES_VERSION " (" WEBJAMES_DATE ")");
php_info_print_table_end();
}
示例2: PHP_MINFO_FUNCTION
static PHP_MINFO_FUNCTION(hstore)
{
php_info_print_table_start();
php_info_print_table_row(2, "HStore support", "enabled");
php_info_print_table_row(2, "HStore version", PHP_HSTORE_VERSION);
php_info_print_table_end();
}
示例3: PHP_MINFO_FUNCTION
static PHP_MINFO_FUNCTION(phalcon)
{
php_info_print_table_start();
php_info_print_table_row(2, "Phalcon Framework", "enabled");
php_info_print_table_row(2, "Phalcon Version", PHP_PHALCON_VERSION);
php_info_print_table_end();
}
示例4: PHP_MINFO_FUNCTION
/* {{{ PHP_MINFO_FUNCTION
*/
static PHP_MINFO_FUNCTION(json)
{
php_info_print_table_start();
php_info_print_table_row(2, "json support", "enabled");
php_info_print_table_row(2, "json version", PHP_JSON_VERSION);
php_info_print_table_end();
}
示例5: PHP_MINFO_FUNCTION
static PHP_MINFO_FUNCTION(win32service)
{
php_info_print_table_start();
php_info_print_table_header(2, "Win32 Service support", "enabled");
php_info_print_table_row(2, "Version", PHP_WIN32SERVICE_VERSION);
php_info_print_table_end();
}
示例6: PHP_MINFO_FUNCTION
/* {{{ PHP_MINFO_FUNCTION */
static PHP_MINFO_FUNCTION(rrd)
{
php_info_print_table_start();
php_info_print_table_header(2, "rrd tool module", "enabled");
php_info_print_table_row(2, "rrd tool module version", PHP_RRD_VERSION);
php_info_print_table_row(2, "rrdtool library version", rrd_strversion());
php_info_print_table_end();
}
示例7: PHP_MINFO_FUNCTION
/* {{{ PHP_MINFO_FUNCTION
*/
static PHP_MINFO_FUNCTION(json)
{
php_info_print_table_start();
php_info_print_table_row(2, "json support", "enabled");
php_info_print_table_row(2, "json version", PHP_JSON_VERSION);
php_info_print_table_row(2, "json remark", "support for non utf8 charset, like 5.3, modify by [email protected]");
php_info_print_table_end();
}
示例8: PHP_MINFO_FUNCTION
/**
* @brief Module initialization function
* @param zend_module Pointer to the module entry
* @param tsrm_ls
*/
static PHP_MINFO_FUNCTION(pmta)
{
php_info_print_table_start();
php_info_print_table_row(2, "PHP Submission API for PowerMTA", "enabled");
php_info_print_table_row(2, "Version", PHP_PMTA_EXTVER);
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
}
示例9: PHP_MINFO_FUNCTION
/* {{{ PHP_MINFO_FUNCTION */
static PHP_MINFO_FUNCTION(clmandelbrot)
{
php_printf("PHP Matsuri 2011\n");
php_info_print_table_start();
php_info_print_table_row(2, "Version",PHP_CLMANDELBROT_VERSION " (alpha)");
php_info_print_table_row(2, "Released", "2011-10-16");
php_info_print_table_row(2, "Authors", "Ryusuke Sekiyama '[email protected]' (lead)\n");
php_info_print_table_end();
}
示例10: zend_accel_info
void zend_accel_info(ZEND_MODULE_INFO_FUNC_ARGS)
{
php_info_print_table_start();
if (ZCG(enabled) && accel_startup_ok && (ZCG(counted) || ZCSG(accelerator_enabled))) {
php_info_print_table_row(2, "Opcode Caching", "Up and Running");
} else {
php_info_print_table_row(2, "Opcode Caching", "Disabled");
}
if (ZCG(enabled) && accel_startup_ok && ZCSG(accelerator_enabled) && ZCG(accel_directives).optimization_level) {
php_info_print_table_row(2, "Optimization", "Enabled");
} else {
php_info_print_table_row(2, "Optimization", "Disabled");
}
if (ZCG(enabled)) {
if (!accel_startup_ok || zps_api_failure_reason) {
php_info_print_table_row(2, "Startup Failed", zps_api_failure_reason);
} else {
char buf[32];
php_info_print_table_row(2, "Startup", "OK");
php_info_print_table_row(2, "Shared memory model", zend_accel_get_shared_model());
snprintf(buf, sizeof(buf), "%ld", ZCSG(hits));
php_info_print_table_row(2, "Cache hits", buf);
snprintf(buf, sizeof(buf), "%ld", ZSMMG(memory_exhausted)?ZCSG(misses):ZCSG(misses)-ZCSG(blacklist_misses));
php_info_print_table_row(2, "Cache misses", buf);
snprintf(buf, sizeof(buf), "%ld", ZCG(accel_directives).memory_consumption-zend_shared_alloc_get_free_memory()-ZSMMG(wasted_shared_memory));
php_info_print_table_row(2, "Used memory", buf);
snprintf(buf, sizeof(buf), "%ld", zend_shared_alloc_get_free_memory());
php_info_print_table_row(2, "Free memory", buf);
snprintf(buf, sizeof(buf), "%ld", ZSMMG(wasted_shared_memory));
php_info_print_table_row(2, "Wasted memory", buf);
#if ZEND_EXTENSION_API_NO > PHP_5_3_X_API_NO
if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) {
snprintf(buf, sizeof(buf), "%ld", ZCSG(interned_strings_top) - ZCSG(interned_strings_start));
php_info_print_table_row(2, "Interned Strings Used memory", buf);
snprintf(buf, sizeof(buf), "%ld", ZCSG(interned_strings_end) - ZCSG(interned_strings_top));
php_info_print_table_row(2, "Interned Strings Free memory", buf);
}
#endif
snprintf(buf, sizeof(buf), "%ld", ZCSG(hash).num_direct_entries);
php_info_print_table_row(2, "Cached scripts", buf);
snprintf(buf, sizeof(buf), "%ld", ZCSG(hash).num_entries);
php_info_print_table_row(2, "Cached keys", buf);
snprintf(buf, sizeof(buf), "%ld", ZCSG(hash).max_num_entries);
php_info_print_table_row(2, "Max keys", buf);
snprintf(buf, sizeof(buf), "%ld", ZCSG(oom_restarts));
php_info_print_table_row(2, "OOM restarts", buf);
snprintf(buf, sizeof(buf), "%ld", ZCSG(hash_restarts));
php_info_print_table_row(2, "Hash keys restarts", buf);
snprintf(buf, sizeof(buf), "%ld", ZCSG(manual_restarts));
php_info_print_table_row(2, "Manual restarts", buf);
}
}
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
}
示例11: PHP_MINFO_FUNCTION
static PHP_MINFO_FUNCTION(tidy)
{
php_info_print_table_start();
php_info_print_table_header(2, "Tidy support", "enabled");
php_info_print_table_row(2, "libTidy Release", (char *)tidyReleaseDate());
php_info_print_table_row(2, "Extension Version", PHP_TIDY_VERSION " ($Id: cdda540586e209c347c9a8c68fc07bbc615d8435 $)");
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
}
示例12: PHP_MINFO_FUNCTION
static PHP_MINFO_FUNCTION(tensile)
{
php_info_print_table_start();
php_info_print_table_row(2, "Tensorflow Support", "enabled");
php_info_print_table_row(2, "Build", TENSILE_VERSION);
php_info_print_table_row(2, "Release", TENSILE_FLAVOR);
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
}
示例13: PHP_MINFO_FUNCTION
/* {{{ PHP_MINFO_FUNCTION */
static PHP_MINFO_FUNCTION(zlib)
{
php_info_print_table_start();
php_info_print_table_header(2, "ZLib Support", "enabled");
php_info_print_table_row(2, "Stream Wrapper", "compress.zlib://");
php_info_print_table_row(2, "Stream Filter", "zlib.inflate, zlib.deflate");
php_info_print_table_row(2, "Compiled Version", ZLIB_VERSION);
php_info_print_table_row(2, "Linked Version", (char *) zlibVersion());
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
}
示例14: ZEND_MINFO_FUNCTION
static ZEND_MINFO_FUNCTION(zopfli)
{
php_info_print_table_start();
php_info_print_table_row(2, "Zopfli support", "enabled");
php_info_print_table_row(2, "Extension Version", ZOPFLI_EXT_VERSION);
#ifdef HAVE_ZLIB_H
php_info_print_table_row(2, "Zopfli png recompress", "supported");
#else
php_info_print_table_row(2, "Zopfli png recompress", "not supported");
#endif
php_info_print_table_end();
}
示例15: ZEND_MINFO_FUNCTION
static ZEND_MINFO_FUNCTION(msgpack)
{
php_info_print_table_start();
php_info_print_table_row(2, "MessagePack Support", "enabled");
#if HAVE_PHP_SESSION
php_info_print_table_row(2, "Session Support", "enabled" );
#endif
php_info_print_table_row(2, "extension Version", MSGPACK_EXTENSION_VERSION);
php_info_print_table_row(2, "header Version", MSGPACK_VERSION);
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
}