Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kjdev/php-ext-hidefl
Hidef lite function Extension for PHP
https://github.com/kjdev/php-ext-hidefl
Last synced: 25 days ago
JSON representation
Hidef lite function Extension for PHP
- Host: GitHub
- URL: https://github.com/kjdev/php-ext-hidefl
- Owner: kjdev
- License: other
- Created: 2012-08-24T06:14:55.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-08-24T06:15:32.000Z (over 12 years ago)
- Last Synced: 2024-11-18T00:52:34.344Z (about 2 months ago)
- Language: C
- Size: 85.9 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hidef lite function Extension for PHP #
This extension allows hidef lite.
## php.ini Option ##
### hidefl.data_path _string_ ###
* default: ""
* change: PHP\_INI\_SYSTEMconstants data file path.
### hidefl.data_extension _string_ ###
* default: ".data"
* change: PHP\_INI\_SYSTEMconstants data file extension.
### hidefl.load_unserialize _bool_ ###
* default: 1
* change: PHP\_INI\_SYSTEMdata file load to run unserialize.
## Function ##
* hidefl\_fetch — Get constants data
* hidefl\_save — Set constants data### hidefl\_fetch — Get constants data ###
#### Description ####
mixed **hidefl\_fetch** ( string _$key_ [ , bool _$thaw_ ] )
Get constants data by simple files.
#### Pameters ####
* _key_
Constants data key name.
* _thaw_
Unused.
#### Return Values ####
Returns TRUE on success or FALSE on failure.
### hidefl\_save — Set constants data ###
#### Description ####
bool **hidefl\_save** ( string _$key_ , mixed _$value_ ] )
Set constants data by simple files.
#### Pameters ####
* _key_
Constants data key name.
* _valued_
Constants data.
#### Return Values ####
Returns TRUE on success or FALSE on failure.
## Examples ##
hidefl_fetch('test');
hidefl_save('test', array('a', 'b'));