MongoId::__set_state

(PECL mongo >= 1.0.8) Create a dummy MongoId public static MongoId MongoId::__set_state ( array $props ) This function is only used by PHP internally, it shouldn't need to ever be called by the user. It is identical to the function: <?php public static function __set_state($props) {     return new MongoId("000000000000000000000000"); } ?> Parameters: props

Yaf_Controller_Abstract::getView

(Yaf >=1.0.0) Retrieve the view engine public Yaf_View_Interface Yaf_Controller_Abstract::getView ( void ) retrieve view engine Returns:

apd_echo

(PECL apd >= 0.2) Echo to the debugging socket bool apd_echo ( string $output ) Usually sent via the socket to request information about the running script. Parameters: output The debugged variable. Returns: Returns TRUE on success or FALSE on failure. Examples: apd_echo() example

dbplus_close

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Close a relation mixed dbplus_close ( resource $relation ) Closes a relation previously opened by dbplus_open(). Parameters: relation A relation opened by dbplus_open(). Returns: Returns TRUE on success or DBPLUS_ERR_UNKNOWN on failure.

Memcached::incrementByKey

(PECL memcached >= 2.0.0) Increment numeric item's value, stored on a specific server public int Memcached::incrementByKey ( string $server_key, string $key [, int $offset = 1 [, int $initial_value = 0 [, int $expiry = 0 ]]] ) Memcached::incrementByKey() increments a numeric item's value by the specified offset. If the item's value is not numeric, an error will result. Memcached::incrementByKey() will set the item to t

posix_getcwd

(PHP 4, PHP 5, PHP 7) Pathname of current directory string posix_getcwd ( void ) Gets the absolute pathname of the script's current working directory. On error, it sets errno which can be checked using posix_get_last_error() Returns: Returns a string of the absolute pathname on success. On error, returns FALSE and sets errno which can be checked with posix_get_last_error().

OAuth::setVersion

(PECL OAuth >= 0.99.1) Set the OAuth version public bool OAuth::setVersion ( string $version ) Sets the OAuth version for subsequent requests Parameters: version OAuth version, default value is always "1.0" Returns: Returns TRUE on success or FALSE on failure.

imagejpeg

(PHP 4, PHP 5, PHP 7) Output image to browser or file bool imagejpeg ( resource $image [, string $filename [, int $quality ]] ) imagejpeg() creates a JPEG file from the given image. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). filename The path to save the file to. If

maxdb_execute

(PECL maxdb 1.0) Alias of maxdb_stmt_execute() This function is an alias of: maxdb_stmt_execute(). This function alias is deprecated and only exists for backwards compatibility reasons. The use of this function is not recommended, as it may be removed from PHP in the future.

Cairo::statusToString

(PECL cairo >= 0.1.0) Retrieves the current status as string public static string Cairo::statusToString ( int $status ) Object oriented style (method): Procedural style: string cairo_status_to_string ( int $status ) Retrieves the current status as a readable string Parameters: status A valid status code given by cairo_status() or CairoContext::status()