|
mysqli::$server_infomysqli_get_server_infoReturns the version of the MySQL server DescriptionObject oriented style string$mysqli->server_info;
Procedural style
string mysqli_get_server_info
( mysqli
$link
)Returns a string representing the version of the MySQL server that the MySQLi extension is connected to. Parameters
Return ValuesA character string representing the server version. ExamplesExample #1 $mysqli->server_info example Object oriented style
<?php Procedural style
<?php The above examples will output: Server version: 4.1.2-alpha-debug See Also
|