SplFileObject::seek

(PHP 5 >= 5.1.0, PHP 7) Seek to specified line public void SplFileObject::seek ( int $line_pos ) Seek to specified line in the file. Parameters: line_pos The zero-based line number to seek to. Returns: No value is returned. Exception: Throws a LogicException if the line_pos is negative.

socket_getpeername

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Queries the remote side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type bool socket_getpeername ( resource $socket, string &$address [, int &$port ] ) Queries the remote side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type. Parameters:

ldap_mod_add

(PHP 4, PHP 5, PHP 7) Add attribute values to current attributes bool ldap_mod_add ( resource $link_identifier, string $dn, array $entry ) Adds one or more attributes to the specified dn. It performs the modification at the attribute level as opposed to the object level. Object-level additions are done by the ldap_add() function. Parameters: link_identifier An LDAP link i

Yaf_View_Simple::__get

(Yaf >=1.0.0) Retrieve assigned variable public void Yaf_View_Simple::__get ([ string $name ] ) Retrieve assigned varaiable Note: parameter can be empty since 2.1.11 Parameters: name the assigned variable name if this is empty, all assigned variables will be returned Returns:

yaml_emit

(PECL yaml >= 0.5.0) Returns the YAML representation of a value string yaml_emit ( mixed $data [, int $encoding = YAML_ANY_ENCODING [, int $linebreak = YAML_ANY_BREAK [, array $callbacks ]]] ) Generate a YAML representation of the provided data. Parameters: data The data being encoded. Can be any type except a resource. encoding Ou

ReflectionFunction::invokeArgs

(PHP 5 >= 5.1.0, PHP 7) Invokes function args public mixed ReflectionFunction::invokeArgs ( array $args ) Invokes the function and pass its arguments as array. Parameters: args The passed arguments to the function as an array, much like call_user_func_array() works. Returns: Returns the result of the invoked function

get_object_vars

(PHP 4, PHP 5, PHP 7) Gets the properties of the given object array get_object_vars ( object $object ) Gets the accessible non-static properties of the given object according to scope. Parameters: object An object instance. Returns: Returns an associative array of defined object accessible non-static properties for the specified object in scope.

newt_form_watch_fd

(PECL newt >= 0.1) void newt_form_watch_fd ( resource $form, resource $stream [, int $flags ] ) Parameters: form stream flags Returns: No value is returned. This function is currently not documented; only its argument list is available.

main

Dummy for main() There is no function named main() except in the PHP source. In PHP 4.3.0, a new type of error handling in the PHP source (php_error_docref) was introduced. One feature is to provide links to a manual page in PHP error messages when the PHP directives html_errors (on by default) and docref_root (on by default until PHP 4.3.2) are set. Sometimes error messages refer to a manual page for the function main() which is why this page exists. If you di

IntlChar::isIDStart

(PHP 7) Check if code point is permissible as the first character in an identifier public static bool IntlChar::isIDStart ( mixed $codepoint ) Determines if the specified character is permissible as the first character in an identifier according to Unicode (The Unicode Standard, Version 3.0, chapter 5.16 Identifiers). TRUE for characters with general categories "L" (letters) and "Nl" (letter numbers). Para