Generator::rewind

(PHP 5 >= 5.5.0, PHP 7) Rewind the iterator public void Generator::rewind ( void ) If iteration has already begun, this will throw an exception. Returns: No value is returned.

Generator::send

(PHP 5 >= 5.5.0, PHP 7) Send a value to the generator public mixed Generator::send ( mixed $value ) Sends the given value to the generator as the result of the current yield expression and resumes execution of the generator. If the generator is not at a yield expression when this method is called, it will first be let to advance to the first yield expression before sending the value. As such it is not necessary to "prim

Generator::throw

(PHP 5 >= 5.5.0, PHP 7) Throw an exception into the generator public mixed Generator::throw ( Exception $exception ) Throws an exception into the generator and resumes execution of the generator. The behavior will be the same as if the current yield expression was replaced with a throw $exception statement. If the generator is already closed when this method is invoked, the exception will be thrown in the caller's conte

Generator::valid

(PHP 5 >= 5.5.0, PHP 7) Check if the iterator has been closed public bool Generator::valid ( void ) Returns: Returns FALSE if the iterator has been closed. Otherwise returns TRUE.

Generator::__wakeup

(PHP 5 >= 5.5.0, PHP 7) Serialize callback public void Generator::__wakeup ( void ) Throws an exception as generators can't be serialized. Returns: No value is returned.

apc_add

(PECL apc >= 3.0.13) Cache a new variable in the data store bool apc_add ( string $key, mixed $var [, int $ttl = 0 ] ) array apc_add ( array $values [, mixed $unused = NULL [, int $ttl = 0 ]] ) Caches a variable in the data store, only if it's not already stored. Note: Unlike many other mechanisms in PHP, variables stored using apc_add() will persist between requests (until the value is removed from the cache).

apc_bin_dump

(PECL apc >= 3.1.4) Get a binary dump of the given files and user variables string apc_bin_dump ([ array $files = NULL [, array $user_vars = NULL ]] ) Returns a binary dump of the given files and user variables from the APC cache. A NULL for files or user_vars signals a dump of every entry, whereas array() will dump nothing. Parameters: files The files. Passing in NU

apc_bin_dumpfile

(PECL apc >= 3.1.4) Output a binary dump of cached files and user variables to a file int apc_bin_dumpfile ( array $files, array $user_vars, string $filename [, int $flags = 0 [, resource $context = NULL ]] ) Outputs a binary dump of the given files and user variables from the APC cache to the named file. Parameters: files The file names being dumped.

apc_bin_load

(PECL apc >= 3.1.4) Load a binary dump into the APC file/user cache bool apc_bin_load ( string $data [, int $flags = 0 ] ) Loads the given binary dump into the APC file/user cache. Parameters: data The binary dump being loaded, likely from apc_bin_dump(). flags Either APC_BIN_VERIFY_CRC32, APC_BIN_VERIFY_MD5, or both.

apc_bin_loadfile

(PECL apc >= 3.1.4) Load a binary dump from a file into the APC file/user cache bool apc_bin_loadfile ( string $filename [, resource $context = NULL [, int $flags = 0 ]] ) Loads a binary dump from a file into the APC file/user cache. Parameters: filename The file name containing the dump, likely from apc_bin_dumpfile(). context The