pcntl_sigprocmask

(PHP 5 >= 5.3.0, PHP 7) Sets and retrieves blocked signals bool pcntl_sigprocmask ( int $how, array $set [, array &$oldset ] ) The pcntl_sigprocmask() function adds, removes or sets blocked signals, depending on the how parameter. Parameters: how Sets the behavior of pcntl_sigprocmask(). Possible values: SIG_BLOCK: Add the signals to the currently blocked signals

base_convert

(PHP 4, PHP 5, PHP 7) Convert a number between arbitrary bases string base_convert ( string $number, int $frombase, int $tobase ) Returns a string containing number represented in base tobase. The base in which number is given is specified in frombase. Both frombase and tobase have to be between 2 and 36, inclusive. Digits in numbers with a base higher than 10 will be represented with the letters a-z, with a meaning 10, b me

ldap_free_result

(PHP 4, PHP 5, PHP 7) Free result memory bool ldap_free_result ( resource $result_identifier ) Frees up the memory allocated internally to store the result. All result memory will be automatically freed when the script terminates. Typically all the memory allocated for the LDAP result gets freed at the end of the script. In case the script is making successive searches which return large result sets, ldap_free_result() cou

snmp2_getnext

(PHP >= 5.2.0) Fetch the SNMP object which follows the given object id string snmp2_getnext ( string $host, string $community, string $object_id [, string $timeout = 1000000 [, string $retries = 5 ]] ) The snmp2_get_next() function is used to read the value of the SNMP object that follows the specified object_id. Parameters: host The hostname of the SNMP agent (serve

IntlBreakIterator::last

(No version information available, might only be in Git) Set the iterator position to index beyond the last character public ReturnType IntlBreakIterator::last ( void ) Returns: This function is currently not documented; only its argument list is available.

Array Operators

Examples: The + operator returns the right-hand array appended to the left-hand array; for keys that exist in both arrays, the elements from the left-hand array will be used, and the matching elements from the right-hand array will be ignored. <?php $a = array("a" => "apple", "b" => "banana"); $b = array("a" => "pear", "b" => "strawberry", "c" => "cherry"); $c = $a + $b; // Union of $a and $b echo "Union of \$a and \$b: \n"; var_dump($c); $c = $

SolrQuery::addMltField

(PECL solr >= 0.9.2) Sets a field to use for similarity public SolrQuery SolrQuery::addMltField ( string $field ) Maps to mlt.fl. It specifies that a field should be used for similarity. Parameters: field The name of the field Returns: Returns the current SolrQuery object, if the return value is used.

RecursiveRegexIterator::__construct

(PHP 5 >= 5.2.0, PHP 7) Creates a new RecursiveRegexIterator. public RecursiveRegexIterator::__construct ( RecursiveIterator $iterator , string $regex [, int $mode = self::MATCH [, int $flags = 0 [, int $preg_flags = 0 ]]] ) Creates a new regular expression iterator. Parameters: iterator The recursive iterator to apply this regex filter to. regex The

curl_errno

(PHP 4 >= 4.0.3, PHP 5, PHP 7) Return the last error number int curl_errno ( resource $ch ) Returns the error number for the last cURL operation. Parameters: ch A cURL handle returned by curl_init(). Returns: Returns the error number or 0 (zero) if no error occurred. Examples: curl_e

PDF_create_field

(PECL pdflib >= 2.0.0) Create form field bool PDF_create_field ( resource $pdfdoc, float $llx, float $lly, float $urx, float $ury, string $name, string $type, string $optlist ) Creates a form field on the current page subject to various options.