当前位置: 首页>>代码示例>>PHP>>正文


PHP PMA_DBI_get_proto_info函数代码示例

本文整理汇总了PHP中PMA_DBI_get_proto_info函数的典型用法代码示例。如果您正苦于以下问题:PHP PMA_DBI_get_proto_info函数的具体用法?PHP PMA_DBI_get_proto_info怎么用?PHP PMA_DBI_get_proto_info使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了PMA_DBI_get_proto_info函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: PMA_printListItem

// User preferences
if ($server > 0) {
    echo '<ul>';
    echo PMA_printListItem(__('More settings'), 'li_user_preferences', './prefs_manage.php?' . $common_url_query);
    echo '</ul>';
}
echo '</div>';
echo '</div>';
echo '<div id="main_pane_right">';
if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
    echo '<div class="group">';
    echo '<h2>MySQL</h2>';
    echo '<ul>' . "\n";
    PMA_printListItem(__('Server') . ': ' . $server_info, 'li_server_info');
    PMA_printListItem(__('Server version') . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_version');
    PMA_printListItem(__('Protocol version') . ': ' . PMA_DBI_get_proto_info(), 'li_mysql_proto');
    PMA_printListItem(__('User') . ': ' . htmlspecialchars($mysql_cur_user_and_host), 'li_user_info');
    echo '    <li id="li_select_mysql_charset">';
    echo '        ' . __('MySQL charset') . ': ' . '        <span xml:lang="en" dir="ltr">' . '           ' . $mysql_charsets_descriptions[$mysql_charset_map[strtolower($charset)]] . "\n" . '           (' . $mysql_charset_map[strtolower($charset)] . ')' . "\n" . '        </span>' . "\n" . '    </li>' . "\n";
    echo '  </ul>';
    echo ' </div>';
}
if ($GLOBALS['cfg']['ShowServerInfo'] || $GLOBALS['cfg']['ShowPhpInfo']) {
    echo '<div class="group">';
    echo '<h2>' . __('Web server') . '</h2>';
    echo '<ul>';
    if ($GLOBALS['cfg']['ShowServerInfo']) {
        PMA_printListItem($_SERVER['SERVER_SOFTWARE'], 'li_web_server_software');
        if ($server > 0) {
            PMA_printListItem(__('MySQL client version') . ': ' . PMA_DBI_get_client_info(), 'li_mysql_client_version');
            PMA_printListItem(__('PHP extension') . ': ' . $GLOBALS['cfg']['Server']['extension'] . ' ' . PMA_showPHPDocu('book.' . $GLOBALS['cfg']['Server']['extension'] . '.php'), 'li_used_php_extension');
开发者ID:dingdong2310,项目名称:g5_theme,代码行数:31,代码来源:main.php

示例2: __

    echo '<h2>' . __('Database server') . '</h2>';
    echo '<ul>' . "\n";
    PMA_printListItem(
        __('Server') . ': ' . $server_info,
        'li_server_info'
    );
    PMA_printListItem(
        __('Software') . ': ' . $common_functions->getServerType(),
        'li_server_type'
    );
    PMA_printListItem(
        __('Software version') . ': ' . PMA_MYSQL_STR_VERSION . ' - ' . PMA_MYSQL_VERSION_COMMENT,
        'li_server_version'
    );
    PMA_printListItem(
        __('Protocol version') . ': ' . PMA_DBI_get_proto_info(),
        'li_mysql_proto'
    );
    PMA_printListItem(
        __('User') . ': ' . htmlspecialchars($mysql_cur_user_and_host),
        'li_user_info'
    );

    echo '    <li id="li_select_mysql_charset">';
    echo '        ' . __('Server charset') . ': '
       . '        <span lang="en" dir="ltr">'
       . '           ' . $mysql_charsets_descriptions[$mysql_charset_map['utf-8']] . "\n"
       . '           (' . $mysql_charset_map['utf-8'] . ')' . "\n"
       . '        </span>' . "\n"
       . '    </li>' . "\n";
    echo '  </ul>';
开发者ID:rajatsinghal,项目名称:phpmyadmin,代码行数:31,代码来源:main.php

示例3: PMA_printListItem

}
echo '<li id="li_select_fontsize">';
echo PMA_Config::getFontsizeForm();
echo '</li>';

echo '</ul>';
echo '</div>';*/
echo '</div>';
echo '<div id="main_pane_right">';
if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
    echo '<div class="group">';
    echo '<h2>MySQL</h2>';
    echo '<ul>' . "\n";
    PMA_printListItem($strServer . ': ' . $server_info, 'li_server_info');
    PMA_printListItem($strServerVersion . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_version');
    PMA_printListItem($strProtocolVersion . ': ' . PMA_DBI_get_proto_info(), 'li_mysql_proto');
    PMA_printListItem($strUser . ': ' . htmlspecialchars($mysql_cur_user_and_host), 'li_user_info');
    echo '    <li id="li_select_mysql_charset">';
    echo '        ' . $strMySQLCharset . ': ' . '        <span xml:lang="en" dir="ltr">' . '           ' . $mysql_charsets_descriptions[$mysql_charset_map[strtolower($charset)]] . "\n" . '           (' . $mysql_charset_map[strtolower($charset)] . ')' . "\n" . '        </span>' . "\n" . '    </li>' . "\n";
    echo '  </ul>';
    echo ' </div>';
}
if ($GLOBALS['cfg']['ShowServerInfo'] || $GLOBALS['cfg']['ShowPhpInfo']) {
    echo '<div class="group">';
    echo '<h2>' . $strWebServer . '</h2>';
    echo '<ul>';
    if ($GLOBALS['cfg']['ShowServerInfo']) {
        PMA_printListItem($_SERVER['SERVER_SOFTWARE'], 'li_web_server_software');
        if ($server > 0) {
            PMA_printListItem($strMysqlClientVersion . ': ' . PMA_DBI_get_client_info(), 'li_mysql_client_version');
            PMA_printListItem($strPHPExtension . ': ' . $GLOBALS['cfg']['Server']['extension'], 'li_used_php_extension');
开发者ID:s-kalaus,项目名称:zkernel,代码行数:31,代码来源:main.php


注:本文中的PMA_DBI_get_proto_info函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。