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_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_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_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_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_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

XSLTProcessor::transformToUri

(PHP 5, PHP 7) Transform to URI int XSLTProcessor::transformToURI ( DOMDocument $doc, string $uri ) Transforms the source node to an URI applying the stylesheet given by the XSLTProcessor::importStylesheet() method. Parameters: doc The document to transform. uri The target URI for the transformation. Returns: R

XsltProcessor::setSecurityPrefs

(PHP >= 5.4.0) Set security preferences public int XsltProcessor::setSecurityPrefs ( int $securityPrefs ) Sets the security preferences. Parameters: securityPrefs The new security preferences. The following constants can be ORed: XSL_SECPREF_READ_FILE, XSL_SECPREF_WRITE_FILE, XSL_SECPREF_CREATE_DIRECTORY, XSL_SECPREF_READ_NETWORK, XSL_SECPREF_WRITE_NETWORK. Alternative