Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

eventdnsbase(3) [php man page]

EVENTDNSBASE(3) 							 1							   EVENTDNSBASE(3)

The EventDnsBase class

INTRODUCTION
Represents Libevent's DNS base structure. Used to resolve DNS asyncronously, parse configuration files like resolv.conf etc. CLASS SYNOPSIS
EventDnsBase final EventDnsBase Constants o const integer$EventDnsBase::OPTION_SEARCH1 o const integer$EventDnsBase::OPTION_NAMESERVERS2 o const integer$EventDnsBase::OPTION_MISC4 o const integer$EventDnsBase::OPTION_HOSTSFILE8 o const integer$EventDnsBase::OPTIONS_ALL15 Methods o public bool EventDnsBase::addNameserverIp (string $ip) o public void EventDnsBase::addSearch (string $domain) o public void EventDnsBase::clearSearch (void ) o public EventDnsBase::__construct (EventBase $base, bool $initialize) o public int EventDnsBase::countNameservers (void ) o public bool EventDnsBase::loadHosts (string $hosts) o public bool EventDnsBase::parseResolvConf (int $flags, string $filename) o public bool EventDnsBase::setOption (string $option, string $value) o public bool EventDnsBase::setSearchNdots (int $ndots) PREDEFINED CONSTANTS
o EventDnsBase::OPTION_SEARCH - Tells to read the domain and search fields from the resolv.conf file and the ndots option, and use them to decide which domains(if any) to search for hostnames that aren't fully-qualified. o EventDnsBase::OPTION_NAMESERVERS - Tells to learn the nameservers from the resolv.conf file. o EventDnsBase::OPTION_MISC - o EventDnsBase::OPTION_HOSTSFILE - Tells to read a list of hosts from /etc/hosts as part of loading the resolv.conf file. o EventDnsBase::OPTIONS_ALL - Tells to learn as much as it can from the resolv.conf file. PHP Documentation Group EVENTDNSBASE(3)

Check Out this Related Man Page

DIRECTORYITERATOR(3)							 1						      DIRECTORYITERATOR(3)

The DirectoryIterator class

INTRODUCTION
The DirectoryIterator class provides a simple interface for viewing the contents of filesystem directories. CLASS SYNOPSIS
DirectoryIterator DirectoryIteratorextends SplFileInfoSeekableIterator Methods o public DirectoryIterator::__construct (string $path) o public DirectoryIterator DirectoryIterator::current (void ) o public int DirectoryIterator::getATime (void ) o public string DirectoryIterator::getBasename ([string $suffix]) o public int DirectoryIterator::getCTime (void ) o public string DirectoryIterator::getExtension (void ) o public string DirectoryIterator::getFilename (void ) o public int DirectoryIterator::getGroup (void ) o public int DirectoryIterator::getInode (void ) o public int DirectoryIterator::getMTime (void ) o public int DirectoryIterator::getOwner (void ) o public string DirectoryIterator::getPath (void ) o public string DirectoryIterator::getPathname (void ) o public int DirectoryIterator::getPerms (void ) o public int DirectoryIterator::getSize (void ) o public string DirectoryIterator::getType (void ) o public bool DirectoryIterator::isDir (void ) o public bool DirectoryIterator::isDot (void ) o public bool DirectoryIterator::isExecutable (void ) o public bool DirectoryIterator::isFile (void ) o public bool DirectoryIterator::isLink (void ) o public bool DirectoryIterator::isReadable (void ) o public bool DirectoryIterator::isWritable (void ) o public string DirectoryIterator::key (void ) o public void DirectoryIterator::next (void ) o public void DirectoryIterator::rewind (void ) o public void DirectoryIterator::seek (int $position) o public string DirectoryIterator::__toString (void ) o public bool DirectoryIterator::valid (void ) CHANGELOG
+--------+----------------------------------------+ |Version | | | | | | | Description | | | | +--------+----------------------------------------+ | 5.1.2 | | | | | | | DirectoryIterator extends SplFileInfo. | | | | +--------+----------------------------------------+ PHP Documentation Group DIRECTORYITERATOR(3)
Man Page