dba_fetch
Fetch data specified by key
Description
stringfalse dba_fetch(stringarray $key, Dba\Connection $dba, int $skip = 0)
Overloaded signature deprecated as of 8.3.0:
string dba_fetch(stringarray $key, int $skip, resource $dba)
dba_fetch fetches the data specified by
key from the database specified with
dba.
Parameters
-
key
-
The key the data is specified by.
Note:
When working with inifiles this function accepts arrays as keys
where index 0 is the group and index 1 is the value name. See:
dba_key_split.
-
dba
-
A Dba\Connection instance, returned by dba_open or dba_popen.
-
skip
-
The number of key-value pairs to ignore when using cdb databases.
This value is ignored for all other databases which do not support
multiple keys with the same name.
Return Values
Returns the associated string if the key/data pair is found, false
otherwise.
See Also
- dba_exists
- dba_delete
- dba_insert
- dba_replace
- dba_key_split