session_save_path

(PHP 4, PHP 5, PHP 7) Get and/or set the current session save path string session_save_path ([ string $path ] ) session_save_path() returns the path of the current directory used to save session data. Parameters: path Session data path. If specified, the path to which data is saved will be changed. session_save_path() needs to be called before session_start() for that pur

Imagick::setImageFilename

(PECL imagick 2.0.0) Sets the filename of a particular image bool Imagick::setImageFilename ( string $filename ) Sets the filename of a particular image in a sequence. Parameters: filename Sets the filename of a particular image in a sequence. Returns: Returns TRUE on success. Exception: Throws ImagickException o

end

(PHP 4, PHP 5, PHP 7) Set the internal pointer of an array to its last element mixed end ( array &$array ) end() advances array's internal pointer to the last element, and returns its value. Parameters: array The array. This array is passed by reference because it is modified by the function. This means you must pass it a real variable and not a function returning an

Gmagick::implodeimage

(PECL gmagick >= Unknown) Creates a new image as a copy public mixed Gmagick::implodeimage ( float $radius ) Creates a new image that is a copy of an existing one with the image pixels "imploded" by the specified percentage. Parameters: radius The radius of the implode Returns: Returns imploded Gmagick object. Exception

CairoContext::setSourceRGBA

(PECL cairo >= 0.1.0) The setSourceRGBA purpose public void CairoContext::setSourceRGBA ( string $red, string $green, string $blue, string $alpha ) Object oriented style (method): Procedural style: void cairo_set_source ( CairoContext $context , CairoPattern $pattern ) Description here. Parameters: context Description... pattern De

GearmanTask::jobHandle

(PECL gearman >= 0.5.0) Get the job handle public string GearmanTask::jobHandle ( void ) Returns the job handle for this task. Returns: The opaque job handle. See also: GearmanClient::doJobHandle() -

FTP context options

FTP context option listing Context options for ftp:// and ftps:// transports. Changelog: 5.1.0 Added proxy. 5.0.0 Added overwrite and resume_pos. Notes: Underlying socket stream context options Additional context options may be supported by the underlying transport For ftp:// streams, refer to context options for the tcp:// transport. For ft

mysqli::disable_reads_from_master

(PHP 5 < 5.3.0) Disable reads from master void mysqli::disable_reads_from_master ( void ) Object oriented style Procedural style bool mysqli_disable_reads_from_master ( mysqli $link ) This function is currently not documented; only its argument list is available. This function has been DEPRECATED and REMOVED as of PHP 5.3.0.

pcntl_alarm

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Set an alarm clock for delivery of a signal int pcntl_alarm ( int $seconds ) Creates a timer that will send a SIGALRM signal to the process after the given number of seconds. Any call to pcntl_alarm() will cancel any previously set alarm. Parameters: seconds The number of seconds to wait. If seconds is zero, no new alarm is created.

Anonymous (class)es

Examples: Support for anonymous classes was added in PHP 7. Anonymous classes are useful when simple, one-off objects need to be created. <?php // Pre PHP 7 code class Logger {     public function log($msg)     {         echo $msg;     } } $util->setLogger(new Logger()); // PHP 7+ code $util->setLogger(new class {     public function log($msg)     {         echo $msg;     } }); The above example will output: They can pass argu