SplFileObject::hasChildren

(PHP 5 >= 5.1.2, PHP 7) SplFileObject does not have children public bool SplFileObject::hasChildren ( void ) An SplFileObject does not have children so this method always return FALSE. Returns: Returns FALSE See also: RecursiveIterator::hasChildren() -

Yaf_Config_Ini::__get

(Yaf >=1.0.0) The __get purpose public void Yaf_Config_Ini::__get ([ string $name ] ) Parameters: name Returns: This function is currently not documented; only its argument list is available.

HaruAnnotation::setOpened

(PECL haru >= 0.0.1) Set the initial state of the annotation bool HaruAnnotation::setOpened ( bool $opened ) Defines whether the annotation is initially displayed open. This function may be used with text annotations only. Parameters: opened TRUE means the annotation is initially displayed open, FALSE - means it's closed. Returns: Returns TRUE

iis_get_script_map

(PECL iisfunc SVN) Gets script mapping on a virtual directory for a specific extension string iis_get_script_map ( int $server_instance, string $virtual_path, string $script_extension ) This function is currently not documented; only its argument list is available.

EventConfig::avoidMethod

(PECL event >= 1.2.6-beta) Tells libevent to avoid specific event method public bool EventConfig::avoidMethod ( int $method ) Tells libevent to avoid specific event method(backend). See » Creating an event base . Parameters: method The backend method to avoid. See EventConfig constants . Returns: Returns TRUE on success, otherwise FALSE.

IntlChar::isdigit

(PHP 7) Check if code point is a digit character public static bool IntlChar::isdigit ( mixed $codepoint ) Determines whether the specified code point is a digit character. TRUE for characters with general category "Nd" (decimal digit numbers). Beginning with Unicode 4, this is the same as testing for the Numeric_Type of Decimal. Parameters: codepoint The integer codepoi

EventBufferEvent::setCallbacks

(PECL event >= 1.2.6-beta) Assigns read, write and event(status) callbacks public void EventBufferEvent::setCallbacks ( callable $readcb , callable $writecb , callable $eventcb [, string $arg ] ) Assigns read, write and event(status) callbacks. Parameters: readcb Read event callback. See About buffer event callbacks . writecb Writ

EventBufferEvent::getDnsErrorString

(PECL event >= 1.2.6-beta) Returns string describing the last failed DNS lookup attempt public string EventBufferEvent::getDnsErrorString ( void ) Returns string describing the last failed DNS lookup attempt made by EventBufferEvent::connectHost() , or an empty string, if there is no DNS error detected. Returns: Returns a string describing DNS lookup error, or an empty string for no error.

SplFileInfo::getFilename

(PHP 5 >= 5.1.2, PHP 7) Gets the filename public string SplFileInfo::getFilename ( void ) Gets the filename without any path information. Returns: The filename. Examples: SplFileInfo::getFilename() example <?php $info = new SplFileInfo('foo.txt'); var_dump($info->getFilename()); $info = new SplFileInfo('/path/to

SQLite3::close

(PHP 5 >= 5.3.0, PHP 7) Closes the database connection public bool SQLite3::close ( void ) Closes the database connection. Returns: Returns TRUE on success, FALSE on failure. Examples: SQLite3::close() example <?php $db = new SQLite3('mysqlitedb.db'); $db->close(); ?>