update : 2015.11.03
php.shukuma.com검색:
|
mysqli::$server_infomysqli_get_server_info(PHP 5) mysqli::$server_info -- mysqli_get_server_info — Returns the version of the MySQL server 설명객체 기반 형식 string $mysqli->server_info;
절차식 형식 Returns a string representing the version of the MySQL server that the MySQLi extension is connected to. 반환값A character string representing the server version. 예제Example #1 $mysqli->server_info example 객체 기반 형식
<?php 절차식 형식
<?php 위 예제들의 출력: Server version: 4.1.2-alpha-debug 참고
|