IntlChar::isupper

(PHP 7) Check if code point has the general category "Lu" (uppercase letter) public static bool IntlChar::isupper ( mixed $codepoint ) Determines whether the specified code point has the general category "Lu" (uppercase letter). Note: This misses some characters that are also uppercase but have a different general category value. In order to include those, use IntlChar::isUUppercase(). Parameters:

gmmktime

(PHP 4, PHP 5, PHP 7) Get Unix timestamp for a GMT date int gmmktime ([ int $hour = gmdate("H") [, int $minute = gmdate("i") [, int $second = gmdate("s") [, int $month = gmdate("n") [, int $day = gmdate("j") [, int $year = gmdate("Y") [, int $is_dst = -1 ]]]]]]] ) Identical to mktime() except the passed parameters represents a GMT date. gmmktime() internally uses mktime() so only times valid in derived local time can

gupnp_service_proxy_get_subscribed

(PECL gupnp >= 0.1.0) Check whether subscription is valid to the service bool gupnp_service_proxy_get_subscribed ( resource $proxy ) Check whether subscription is valid to the service. Parameters: proxy A service proxy identifier. Returns: Returns TRUE on success or FALSE on failure.

trader_cdlinneck

(PECL trader >= 0.2.0) In-Neck Pattern array trader_cdlinneck ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close Closing pric

gethostname

(PHP >= 5.3.0) Gets the host name string gethostname ( void ) gethostname() gets the standard host name for the local machine. Returns: Returns a string with the hostname on success, otherwise FALSE is returned. Examples: A simple gethostname() example <?php echo gethostname(); // may output e.g,: sandie // Or, an 

mssql_free_statement

(PHP 4 >= 4.3.2, PHP 5, PECL odbtp >= 1.1.1) Free statement memory bool mssql_free_statement ( resource $stmt ) mssql_free_statement() only needs to be called if you are worried about using too much memory while your script is running. All statement memory will automatically be freed when the script ends. You may call mssql_free_statement() with the statement identifier as an argument and the associated statement memor

fbsql_read_blob

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Read a BLOB from the database string fbsql_read_blob ( string $blob_handle [, resource $link_identifier ] ) Reads BLOB data from the database. If a select statement contains BLOB and/or CLOB columns FrontBase will return the data directly when data is fetched. This default behavior can be changed with fbsql_set_lob_mode() so the fetch functions will return handles to BLOB and CLOB data. If

mailparse_msg_extract_whole_part_file

(PECL mailparse >= 0.9.0) Extracts a message section including headers without decoding the transfer encoding string mailparse_msg_extract_whole_part_file ( resource $mimemail, string $filename [, callable $callbackfunc ] ) Parameters: mimemail A valid MIME resource. filename A valid MIME resource. callbackfunc

Stomp::hasFrame

(PECL stomp >= 0.1.0) Indicates whether or not there is a frame ready to read public bool Stomp::hasFrame ( void ) Object oriented style (method): Procedural style: bool stomp_has_frame ( resource $link ) Indicates whether or not there is a frame ready to read. Parameters: link Procedural style only: The stomp link identifier returned by stomp_connect().

sybase_get_last_message

(PHP 4, PHP 5, PHP 7) Returns the last message from the server string sybase_get_last_message ( void ) sybase_get_last_message() returns the last message reported by the server. Returns: Returns the message as a string. See also: sybase_min_message_severity() -