dba_list

(PHP 4 >= 4.3.0, PHP 5, PHP 7) List all open database files array dba_list ( void ) dba_list() list all open database files. Returns: An associative array, in the form resourceid => filename.

dba_key_split

(PHP 5, PHP 7) Splits a key in string representation into array representation mixed dba_key_split ( mixed $key ) dba_key_split() splits a key (string representation) into an array representation. Parameters: key The key in string representation. Returns: Returns an array of the form array(0 => group, 1 => value_name). This function will

dba_insert

(PHP 4, PHP 5, PHP 7) Insert entry bool dba_insert ( string $key, string $value, resource $handle ) dba_insert() inserts the entry described with key and value into the database. Parameters: key The key of the entry to be inserted. If this key already exist in the database, this function will fail. Use dba_replace() if you need to replace an existent key.

dba_handlers

(PHP 4 >= 4.3.0, PHP 5, PHP 7) List all the handlers available array dba_handlers ([ bool $full_info = false ] ) dba_handlers() list all the handlers supported by this extension. Parameters: full_info Turns on/off full information display in the result. Returns: Returns an array of database handlers. If full_info is set to TRUE, the array wil

dba_firstkey

(PHP 4, PHP 5, PHP 7) Fetch first key string dba_firstkey ( resource $handle ) dba_firstkey() returns the first key of the database and resets the internal key pointer. This permits a linear search through the whole database. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns the key on success or FAL

dba_fetch

(PHP 4, PHP 5, PHP 7) Fetch data specified by key string dba_fetch ( string $key, resource $handle ) string dba_fetch ( string $key , int $skip , resource $handle ) dba_fetch() fetches the data specified by key from the database specified with handle. Parameters: key The key the data is specified by. Note: When working with inifiles this function accepts arrays as ke

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

dba_delete

(PHP 4, PHP 5, PHP 7) Delete DBA entry specified by key bool dba_delete ( string $key, resource $handle ) dba_delete() deletes the specified entry from the database. Parameters: key The key of the entry which is deleted. handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns TRUE o

dba_close

(PHP 4, PHP 5, PHP 7) Close a DBA database void dba_close ( resource $handle ) dba_close() closes the established database and frees all resources of the specified database handle. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: No value is returned.

XSLTProcessor::transformToXML

(PHP 5, PHP 7) Transform to XML string XSLTProcessor::transformToXML ( object $doc ) Transforms the source node to a string applying the stylesheet given by the xsltprocessor::importStylesheet() method. Parameters: doc The DOMDocument or SimpleXMLElement object to be transformed. Returns: The result of the transformation as a string or FALSE on e