This extension allows hidef lite.
- default: ""
- change: PHP_INI_SYSTEM
constants data file path.
- default: ".data"
- change: PHP_INI_SYSTEM
constants data file extension.
- default: 1
- change: PHP_INI_SYSTEM
data file load to run unserialize.
- hidefl_fetch — Get constants data
- hidefl_save — Set constants data
mixed hidefl_fetch ( string $key [ , bool $thaw ] )
Get constants data by simple files.
-
key
Constants data key name.
-
thaw
Unused.
Returns TRUE on success or FALSE on failure.
bool hidefl_save ( string $key , mixed $value ] )
Set constants data by simple files.
-
key
Constants data key name.
-
valued
Constants data.
Returns TRUE on success or FALSE on failure.
hidefl_fetch('test');
hidefl_save('test', array('a', 'b'));