SolrQuery::getHighlightHighlightMultiTerm

(PECL solr >= 0.9.2) Returns whether or not to enable highlighting for range/wildcard/fuzzy/prefix queries public bool SolrQuery::getHighlightHighlightMultiTerm ( void ) Returns whether or not to enable highlighting for range/wildcard/fuzzy/prefix queries Returns: Returns a boolean on success and NULL if not set.

gmp_fact

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Factorial GMP gmp_fact ( mixed $a ) Calculates factorial (a!) of a. Parameters: a The factorial number. Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number. Returns: A GMP number resource in PHP

SplPriorityQueue::rewind

(PHP 5 >= 5.3.0, PHP 7) Rewind iterator back to the start (no-op) public void SplPriorityQueue::rewind ( void ) This rewinds the iterator to the beginning. This is a no-op for heaps as the iterator is virtual and in fact never moves from the top of the heap. Returns: No value is returned.

GmagickDraw::point

(PECL gmagick >= Unknown) Draws a point public GmagickDraw GmagickDraw::point ( float $x, float $y ) Draws a point using the current stroke color and stroke thickness at the specified coordinates. Parameters: x target x coordinate y target y coordinate Returns: The GmagickDraw object on success

Extending Exceptions

Examples: The Built in Exception class A User defined Exception class can be defined by extending the built-in Exception class. The members and properties below, show what is accessible within the child class that derives from the built-in Exception class. <?php class Exception {     protected $message = 'Unknown exception';   // exception message     private   $string;                          // __toString cache     protected $code = 0;                        /

ftp_site

(PHP 4, PHP 5, PHP 7) Sends a SITE command to the server bool ftp_site ( resource $ftp_stream, string $command ) ftp_site() sends the given SITE command to the FTP server. SITE commands are not standardized, and vary from server to server. They are useful for handling such things as file permissions and group membership. Parameters: ftp_stream The link identifier of the

m_completeauthorizations

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) Number of complete authorizations in queue, returning an array of their identifiers int m_completeauthorizations ( resource $conn, int &$array ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). array Its description Returns: What th

HaruPage::moveTextPos

(PECL haru >= 0.0.1) Move text position to the specified offset bool HaruPage::moveTextPos ( float $x, float $y [, bool $set_leading = false ] ) Moves text position to the specified offset. If the start position of the current line is (x1, y1), the start of the next line is (x1 + x, y1 + y). Parameters: x The specified text position offset. y

newt_checkbox_tree_get_multi_selection

(PECL newt >= 0.1) array newt_checkbox_tree_get_multi_selection ( resource $checkboxtree, string $seqnum ) Parameters: checkboxtree seqnum Returns: This function is currently not documented; only its argument list is available.

ncurses_doupdate

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Write all prepared refreshes to terminal bool ncurses_doupdate ( void ) Compares the virtual screen to the physical screen and updates the physical screen. This way is more effective than using multiple refresh calls. Returns: Returns TRUE on success or FALSE on failure. This function is EXPERIMEN