(PHP 4 >= 4.0.5, PHP 5)
mysql_get_host_info — Obtém informações do servidor MySQL
$link_identifier
] )Descreve o tipo de conexão em uso para a conexão, incluindo o nome do servidor.
link_identifier
The MySQL connection. If the
link identifier is not specified, the last link opened by
mysql_connect() is assumed. If no such link is found, it
will try to create one as if mysql_connect() was called
with no arguments. If no connection is found or established, an
E_WARNING
level error is generated.
Retorna uma string descrevendo o tipo da conexão MySQL em uso para a
conexão, ou FALSE
em caso de falha.
Exemplo #1 Exemplo mysql_get_host_info()
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
printf("MySQL host info: %s\n", mysql_get_host_info());
?>
O exemplo acima irá imprimir algo similar à:
MySQL host info: Localhost via UNIX socket