PMA\libraries\DatabaseInterface::getHostInfo PHP Méthode

getHostInfo() public méthode

Returns a string representing the type of connection used
public getHostInfo ( object $link = null ) : string
$link object mysql link
Résultat string type of connection used
    public function getHostInfo($link = null)
    {
        $link = $this->getLink($link);
        if ($link === false) {
            return false;
        }
        return $this->_extension->getHostInfo($link);
    }