openal_source_play

(PECL openal >= 0.1.0) Start playing the source bool openal_source_play ( resource $source ) Parameters: source An Open AL(Source) resource (previously created by openal_source_create()). Returns: Returns TRUE on success or FALSE on failure. See also: openal

imagestring

(PHP 4, PHP 5, PHP 7) Draw a string horizontally bool imagestring ( resource $image, int $font, int $x, int $y, string $string, int $color ) Draws a string at the given coordinates. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). font Can be 1, 2, 3, 4, 5 for built-in fo

array_change_key_case

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Changes the case of all keys in an array array array_change_key_case ( array $array [, int $case = CASE_LOWER ] ) Returns an array with all keys from array lowercased or uppercased. Numbered indices are left as is. Parameters: array The array to work on case Either CASE_UPPER or CASE_LOWER (default)

px_close

(PECL paradox >= 1.0.0) Closes a paradox database bool px_close ( resource $pxdoc ) Closes the paradox database. This function will not close the file. You will have to call fclose() afterwards. Parameters: pxdoc Resource identifier of the paradox database as returned by px_new(). Returns: Returns TRUE on success or FALSE on failure.

TokyoTyrantQuery::rewind

(PECL tokyo_tyrant >= 0.1.0) Rewinds the iterator public bool TokyoTyrantQuery::rewind ( void ) Rewind the resultset and executes the query if it has not been executed. Part of the Iterator interface. Returns: Returns TRUE Examples: TokyoTyrantQuery iterator example <?php /* Connect to a table database */ $tt = new 

fann_set_sarprop_temperature

(PECL fann >= 1.0.0) Sets the sarprop temperature bool fann_set_sarprop_temperature ( resource $ann, float $sarprop_temperature ) Sets the sarprop temperature. Parameters: ann Neural network resource. sarprop_temperature The sarprop temperature. Returns: Returns TRUE on success, or FALSE otherwise.

SolrQuery::getFacetDateHardEnd

(PECL solr >= 0.9.2) Returns the value of the facet.date.hardend parameter public string SolrQuery::getFacetDateHardEnd ([ string $field_override ] ) Returns the value of the facet.date.hardend parameter. Accepts an optional field override Parameters: field_override The name of the field Returns: Returns a string on success and NULL if not set

nsapi_request_headers

(PHP 4 >= 4.3.3, PHP 5, PHP 7) Fetch all HTTP request headers array nsapi_request_headers ( void ) nsapi_request_headers() gets all the HTTP headers in the current request. This is only supported when PHP runs as a NSAPI module. Note: Prior to PHP 4.3.3, getallheaders() was only available for the Apache servers. After PHP 4.3.3, getallheaders() is an alias for nsapi_request_headers() if you use the NSAPI module. No

SolrDisMaxQuery::setTrigramPhraseSlop

(No version information available, might only be in Git) Sets Trigram Phrase Slop (ps3 parameter) public SolrDisMaxQuery SolrDisMaxQuery::setTrigramPhraseSlop ( string $slop ) Sets Trigram Phrase Slop (ps3 parameter) Parameters: slop Phrase slop Returns: SolrDisMaxQuery Examples: Solr

getprotobyname

(PHP 4, PHP 5, PHP 7) Get protocol number associated with protocol name int getprotobyname ( string $name ) getprotobyname() returns the protocol number associated with the protocol name as per /etc/protocols. Parameters: name The protocol name. Returns: Returns the protocol number, or FALSE on failure.