mysql_get_client_info

(PHP 4 >= 4.0.5, PHP 5)

mysql_get_client_infoGet MySQL client info

Avviso

Questa enstensione deprecata da PHP 5.5.0, e sarĂ  rimossa in futuro. Al suo posto, usare l'estensione MySQLi o PDO_MySQL. Vedere anche la guida MySQL: scelta dell'API e le FAQ relative per ulteriori informazioni. Le alternative a questa funzione includono:

Descrizione

mysql_get_client_info(): string

mysql_get_client_info() returns a string that represents the client library version.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The MySQL client version.

Esempi

Example #1 mysql_get_client_info() example

<?php
printf
("MySQL client info: %s\n", mysql_get_client_info());
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

MySQL client info: 3.23.39

Vedere anche:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top