SAMMessage::__construct

(PECL sam >= 0.1.0) Creates a new Message object SAMMessage::__construct ([ mixed $body ] ) Creates a new SAMMessage object optionally specifying a message body. Parameters: body The optional body for the message. Examples: Creating a message <?php $msg = new SAMMessage(); ?> Cr

substr_replace

(PHP 4, PHP 5, PHP 7) Replace text within a portion of a string mixed substr_replace ( mixed $string, mixed $replacement, mixed $start [, mixed $length ] ) substr_replace() replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. Parameters: string The input string. An array of strings can be provided, in

json_last_error

(PHP 5 >= 5.3.0, PHP 7) Returns the last error occurred int json_last_error ( void ) Returns the last error (if any) occurred during the last JSON encoding/decoding. Returns: Returns an integer, the value can be one of the following constants: JSON error codes Constant Meaning Availability JSON_ERROR_NONE No error has occurred JSON_ERROR_DEPTH The maximum stack depth has been exceeded JSON

SolrQuery::setOmitHeader

(PECL solr >= 0.9.2) Exclude the header from the returned results public SolrQuery SolrQuery::setOmitHeader ( bool $flag ) Exclude the header from the returned results. Parameters: flag TRUE excludes the header from the result. Returns: Returns the current SolrQuery object, if the return value is used.

dbplus_prev

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Get previous tuple from relation int dbplus_prev ( resource $relation, array &$tuple ) Reads the data for the previous tuple for the given relation, makes it the current tuple and will pass it back as an associative array in tuple. Parameters: relation A relation opened by dbplus_open(). tuple

ldap_set_option

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Set the value of the given option bool ldap_set_option ( resource $link_identifier, int $option, mixed $newval ) Sets the value of the specified option to be newval. Parameters: link_identifier An LDAP link identifier, returned by ldap_connect(). option The parameter option can be one of: Option Type A

file

(PHP 4, PHP 5, PHP 7) Reads entire file into an array array file ( string $filename [, int $flags = 0 [, resource $context ]] ) Reads an entire file into an array. Note: You can use file_get_contents() to return the contents of a file as a string. Parameters: filename Path to the file. TipA URL can be used as a filename with this function if the fopen wrappers hav

PDF_info_font

(PECL pdflib >= 2.1.0) Query detailed information about a loaded font float PDF_info_font ( resource $pdfdoc, int $font, string $keyword, string $optlist ) Queries detailed information about a loaded font.

PDF_shading

(PECL pdflib >= 2.0.0) Define blend int PDF_shading ( resource $pdfdoc, string $shtype, float $x0, float $y0, float $x1, float $y1, float $c1, float $c2, float $c3, float $c4, string $optlist ) Defines a blend from the current fill color to another color. This function requires PDF 1.4 or above.

SplEnum::getConstList

(PECL spl_types >= 0.1.0) Returns all consts (possible values) as an array. public array SplEnum::getConstList ([ bool $include_default = false ] ) Parameters: include_default Whether to include __default property. Returns: This function is currently not documented; only its argument list is available.