data://

Data (RFC 2397) The data: (» RFC 2397) stream wrapper is available since PHP 5.2.0. Examples: Print data:// contents <?php // prints "I love PHP" echo file_get_contents('data://text/plain;base64,SSBsb3ZlIFBIUAo='); ?> Fetch the media type <?php $fp   = fopen('data://text/plain;base64,', 'r'); $meta = stream_get_meta_data($fp); // prints "te

$php_errormsg

(PHP 4, PHP 5, PHP 7) The previous error message $php_errormsg is a variable containing the text of the last error message generated by PHP. This variable will only be available within the scope in which the error occurred, and only if the track_errors configuration option is turned on (it defaults to off). If a user defined error handler (set_error_handler()) is set $php_errormsg is only set if

SolrQuery::setExpand

(PECL solr >= 2.2.0) Enables/Disables the Expand Component public SolrQuery SolrQuery::setExpand ( bool $value ) Enables/Disables the Expand Component. Parameters: value Bool flag Returns: SolrQuery Examples: SolrQuery::setExpand() example <?php $query = new SolrQ

pspell_config_personal

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Set a file that contains personal wordlist bool pspell_config_personal ( int $dictionary_link, string $file ) Set a file that contains personal wordlist. The personal wordlist will be loaded and used in addition to the standard one after you call pspell_new_config(). The file is also the file where pspell_save_wordlist() will save personal wordlist to. pspell_config_personal() should be us

ps_show_xy2

(PECL ps >= 1.1.0) Output text at position bool ps_show_xy2 ( resource $psdoc, string $text, int $len, float $xcoor, float $ycoor ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

PharData::delete

(PHP >= 5.3.0, PECL phar >= 2.0.0) Delete a file within a tar/zip archive bool PharData::delete ( string $entry ) Delete a file within an archive. This is the functional equivalent of calling unlink() on the stream wrapper equivalent, as shown in the example below. Parameters: entry Path within an archive to the file to delete. Returns: ret

Gmagick::getimagematte

(PECL gmagick >= Unknown) Check if the image has a matte channel public int Gmagick::getimagematte ( void ) Returns TRUE if the image has a matte channel, otherwise FALSE. Returns: Returns TRUE if the image has a matte channel, otherwise FALSE. Exception: Throws an GmagickException on error.

ncurses_isendwin

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Ncurses is in endwin mode, normal screen output may be performed bool ncurses_isendwin ( void ) Checks if ncurses is in endwin mode. Returns: Returns TRUE, if ncurses_end() has been called without any subsequent calls to ncurses_wrefresh(), FALSE otherwise. This function is EXPERIMENTAL. The behavi

$_REQUEST

(PHP 4 >= 4.1.0, PHP 5, PHP 7) HTTP Request variables An associative array that by default contains the contents of $_GET, $_POST and $_COOKIE. Changelog: 5.3.0 Introduced request_order. This directive affects the contents of $_REQUEST. 4.3.0 $_FILES $_REQUEST 4.1.0 Introduced $_REQUEST. Notes: This is a 'su

ImagickDraw::setStrokeLineJoin

(PECL imagick 2.0.0) Specifies the shape to be used at the corners of paths when they are stroked bool ImagickDraw::setStrokeLineJoin ( int $linejoin ) Specifies the shape to be used at the corners of paths (or other vector shapes) when they are stroked. Parameters: linejoin LINEJOIN_ constant Returns: No value is returned.