Lua::eval

(PECL lua >=0.9.0) Evaluate a string as Lua code public mixed Lua::eval ( string $statements ) Parameters: statements Returns: Returns result of evaled code, NULL for wrong arguments or FALSE on other failure. This function is currently not documented; only its argument list is available.

SessionHandler::read

(PHP 5 >= 5.4.0, PHP 7) Read session data public string SessionHandler::read ( string $session_id ) Reads the session data from the session storage, and returns the result back to PHP for internal processing. This method is called automatically by PHP when a session is started (either automatically or explicity with session_start() and is preceeded by an internal call to the SessionHandler::open(). This method wraps the

Cond::signal

(PECL pthreads >= 2.0.0) Signal a Condition final public static boolean Cond::signal ( long $condition ) Parameters: condition A handle returned by a previous call to Cond::create() Returns: A boolean indication of success. Examples: Condition Signalling <?php /** You 

SWFDisplayItem::scale

(PHP 5 <= 5.3.0, PECL ming SVN) Scales the object in relative coordinates void SWFDisplayItem::scale ( float $dx, float $dy ) swfdisplayitem::scale() scales the current object by (dx,dy) from its current size. The object may be a swfshape(), a swfbutton(), a swftext() or a swfsprite() object. It must have been added using the swfmovie::add(). Returns: No value is returned.

TokyoTyrant::putCat

(PECL tokyo_tyrant >= 0.1.0) Concatenates to a record public TokyoTyrant TokyoTyrant::putCat ( mixed $keys [, string $value ] ) Appends a value into existing key or multiple values if keys is an array. The second parameter is mandatory if keys is a string. If the record does not exist a new record is created. Parameters: keys A string key or an array of key-value pairs

Imagick::getPointSize

(No version information available, might only be in Git) Gets point size float Imagick::getPointSize ( void ) Returns the objects point size property. This method is available if Imagick has been compiled against ImageMagick version 6.3.7 or newer. Returns: Returns a float containing the point size. See also: Im

SplFixedArray::valid

(PHP 5 >= 5.3.0, PHP 7) Check whether the array contains more elements public bool SplFixedArray::valid ( void ) Checks if the array contains any more elements. Returns: Returns TRUE if the array contains any more elements, FALSE otherwise.

session_pgsql_get_error

(PECL session_pgsql SVN) Returns number of errors and last error message array session_pgsql_get_error ([ bool $with_error_message = false ] ) Get the number of errors and optional the error messages. Parameters: with_error_message Set to TRUE the literal error message for each error is also returned. Returns: The number of errors are returned a

session_pgsql_add_error

(PECL session_pgsql SVN) Increments error counts and sets last error message bool session_pgsql_add_error ( int $error_level [, string $error_message ] ) Parameters: error_level error_message Returns: Returns TRUE on success or FALSE on failure. This function is currently not docu

fileowner

(PHP 4, PHP 5, PHP 7) Gets file owner int fileowner ( string $filename ) Gets the file owner. Parameters: filename Path to the file. Returns: Returns the user ID of the owner of the file, or FALSE on failure. The user ID is returned in numerical format, use posix_getpwuid() to resolve it to a username. Exception: