sybase_connect

(PHP 4, PHP 5, PHP 7) Opens a Sybase server connection resource sybase_connect ([ string $servername [, string $username [, string $password [, string $charset [, string $appname [, bool $new = false ]]]]]] ) sybase_connect() establishes a connection to a Sybase server. In case a second call is made to sybase_connect() with the same arguments, no new link will be established, but instead, the link identifier of the alread

trader_cdltakuri

(PECL trader >= 0.2.0) Takuri (Dragonfly Doji with very long lower shadow) array trader_cdltakuri ( 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.

stomp_connect_error

(PECL stomp >= 0.3.0) Returns a string description of the last connect error string stomp_connect_error ( void ) Returns a string description of the last connect error. Returns: A string that describes the error, or NULL if no error occurred. Examples: stomp_connect_error() example <?php $link = stomp_connect('http:

sqlite_fetch_column_types

(PHP 5 < 5.4.0) Return an array of column types from a particular table array sqlite_fetch_column_types ( string $table_name, resource $dbhandle [, int $result_type = SQLITE_ASSOC ] ) Object oriented style (method): public array SQLiteDatabase::fetchColumnTypes ( string $table_name [, int $result_type = SQLITE_ASSOC ] ) sqlite_fetch_column_types() returns an array of column data types from the specified table_name tab

SWFSprite::__construct

(PHP 5 <= 5.3.0, PECL ming SVN) Creates a movie clip (a sprite) SWFSprite::__construct ( void ) Creates a new SWFSprite object. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk.

KTaglib_MPEG_File::__construct

(0.0.1) Opens a new file public KTaglib_MPEG_File::__construct ( string $filename ) Opens a new MPEG file. Parameters: filename The file to read Examples: Opens a new MP3 file and read the title <?php $mpeg = new KTaglib_MPEG_File('example.mp3'); echo $mpeg->getID3v1Tag()->getTitle(); ?>

KTaglib_ID3v2_Frame::__toString

(0.0.1) Returns a string representation of the frame public string KTaglib_ID3v2_Frame::__toString ( void ) Returns a string representation of the frame. This might be just the frame id, but might contain more information. Please see the ktaglib documentation for more information Returns: Returns a string representation of the frame.

dba_exists

(PHP 4, PHP 5, PHP 7) Check whether key exists bool dba_exists ( string $key, resource $handle ) dba_exists() checks whether the specified key exists in the database. Parameters: key The key the check is performed for. handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns TRUE if

fann_get_cascade_activation_steepnesses_count

(PECL fann >= 1.0.0) The number of activation steepnesses int fann_get_cascade_activation_steepnesses_count ( resource $ann ) The number of activation steepnesses in the fann_get_cascade_activation_functions() array. The default number of activation steepnesses is 4. Parameters: ann Neural network resource. Returns: The number of activation st

get_defined_functions

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Returns an array of all defined functions array get_defined_functions ( void ) Gets an array of all defined functions. Returns: Returns a multidimensional array containing a list of all defined functions, both built-in (internal) and user-defined. The internal functions will be accessible via $arr["internal"], and the user defined ones using $arr["user"] (see exam