LdapTools\DomainConfiguration::getConnectTimeout PHP 메소드

getConnectTimeout() 공개 메소드

Get the initial connection timeout value (seconds). This is how long it will wait when making the initial connection attempt to the LDAP server before it considers it unreachable/down.
public getConnectTimeout ( ) : integer
리턴 integer
    public function getConnectTimeout()
    {
        return $this->config['connectTimeout'];
    }

Usage Example

예제 #1
0
 /**
  * Check if a LDAP server is up and available.
  *
  * @param string $server
  * @return bool
  */
 protected function isServerAvailable($server)
 {
     $result = $this->tcp->connect($server, $this->config->getPort(), $this->config->getConnectTimeout());
     if ($result) {
         $this->tcp->close();
     }
     return $result;
 }