maxdb_get_server_version

maxdb::server_version

(PECL maxdb >= 1.0)

maxdb_get_server_version -- maxdb::server_versionReturns the version of the MaxDB server as an integer

說明

程序化風格

int maxdb_get_server_version ( resource $link )

物件導向風格

int $maxdb->server_version;

The maxdb_get_server_version() function returns the version of the server connected to (represented by the link parameter) as an integer.

The form of this version number is main_version * 10000 + minor_version * 100 + sub_version (i.e. version 7.5.0 is 70500).

回傳值

An integer representing the server version.

範例

Example #1 物件導向風格

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

/* check connection */
if (maxdb_connect_errno()) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

/* print server version */
printf("Server version: %d\n"$maxdb->server_version);

/* close connection */
$maxdb->close();
?>

Example #2 程序化風格

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

/* check connection */
if (maxdb_connect_errno()) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

/* print server version */
printf("Server version: %d\n"maxdb_get_server_version($link));

/* close connection */
maxdb_close($link);
?>

上例的輸出類似於:

Server version: 7<...>

參見

add a note add a note

User Contributed Notes

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