PHP » GoLang |
login |
register |
about
|
GoLang maxdb_get_server_version
request it (397)
GoLang replacement for PHP's maxdb_get_server_version
[edit | history]
maxdb_get_server_versionmaxdb::server_version(PECL maxdb >= 1.0) maxdb_get_server_version -- maxdb::server_version — Returns the version of the MaxDB server as an integer DescriptionProcedural style
int maxdb_get_server_version
( resource
$link
)Object oriented style int $maxdb->server_version;
The maxdb_get_server_version() function returns the
version of the server connected to (represented by the
The form of this version number is main_version * 10000 + minor_version * 100 + sub_version (i.e. version 7.5.0 is 70500). Return ValuesAn integer representing the server version. ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above example will output something similar to: Server version: 7<...> See Also
|
more
Recently updated
more
Most requested
|