getVersion() публичный Метод

Gets the version string of the database server
public getVersion ( ) : string
Результат string The database version
Пример #1
0
 /**
  * Tests that getVersion method sends the correct query for getting the mysql version
  * @return void
  */
 public function testGetVersion()
 {
     $version = $this->Dbo->getVersion();
     $this->assertTrue(is_string($version));
 }