Movatterモバイル変換


[0]ホーム

URL:


    mysql_db_query »
    « mysql_data_seek

    mysql_db_name

    (PHP 4, PHP 5)

    mysql_db_nameRetrieves database name from the call tomysql_list_dbs()

    Warning

    This extension was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0.Instead, theMySQLi orPDO_MySQL extension should be used.See alsoMySQL: choosing an API guide.Alternatives to this function include:

    • Query:SELECT DATABASE()

    Description

    mysql_db_name(resource$result,int$row,mixed$field = NULL):string

    Retrieve the database name from a call tomysql_list_dbs().

    Parameters

    result

    The result pointer from a call tomysql_list_dbs().

    row

    The index into the result set.

    field

    The field name.

    Return Values

    Returns the database name on success, andfalse on failure. Iffalse is returned, usemysql_error() to determine the nature of the error.

    Examples

    Example #1mysql_db_name() example

    <?php
    error_reporting
    (E_ALL);

    $link=mysql_connect('dbhost','username','password');
    $db_list=mysql_list_dbs($link);

    $i=0;
    $cnt=mysql_num_rows($db_list);
    while (
    $i<$cnt) {
    echo
    mysql_db_name($db_list,$i) ."\n";
    $i++;
    }
    ?>

    Notes

    Note:

    For backward compatibility, the followingdeprecated alias may be used:mysql_dbname()

    See Also

    Found A Problem?

    Learn How To Improve This PageSubmit a Pull RequestReport a Bug
    add a note

    User Contributed Notes

    There are no user contributed notes for this page.
    To Top
    and to navigate •Enter to select •Esc to close •/ to open
    PressEnter without selection to search using Google

    [8]ページ先頭

    ©2009-2025 Movatter.jp