maxdb_get_host_info

(PECL)

maxdb_get_host_info

(no version information, might be only in CVS)

maxdb->get_host_info -- Retourne une chaîne représentant le typde de connexion utilisé

Description

Style procédural

string maxdb_get_host_info ( resource link )

Style orienté objet (méthode)

class maxdb {

string host_info

}

maxdb_get_host_info() retourne une chaîne décrivant la connexion représentée par le paramètre link.

Valeurs de retour

Une chaîne représentant l'hôte du serveur ainsi que le type de connexion.

Exemples

Exemple 1. Style orienté objet

<?php
$maxdb
= new maxdb("localhost", "MONA", "RED", "DEMODB");

/* Vérification de la connexion */
if (maxdb_connect_errno()) {
   
printf("Echec de la connexion : %s\n", maxdb_connect_error());
   exit();
}

/* Affiche les informations de l'hôte */
printf("Informations sur l'hôte : %s\n", $maxdb->host_info);

/* Fermeture de la connexion */
$maxdb->close();
?>

Exemple 2. Style procédural

<?php
$link
= maxdb_connect("localhost", "MONA", "RED", "DEMODB");

/* Vérification de la connexion */
if (maxdb_connect_errno()) {
   
printf("Echec de la connexion : %s\n", maxdb_connect_error());
   exit();
}

/* Affiche les informations de l'hôte */
printf("Informations sur l'hôte : %s\n", maxdb_get_host_info($link));

/* Fermeture de la connexion */
maxdb_close($link);
?>

L'exemple ci-dessus va afficher :

Informations sur l'hôte : localhost

Voir aussi

maxdb_get_proto_info().

Hosting by: Hurra Communications GmbH
Generated: 2007-01-26 18:02:09