php-internal-docs 8.4.8
Unofficial docs for php/php-src
|
#include "php.h"
#include "php_globals.h"
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "inifile.h"
Go to the source code of this file.
Functions | |
const char * | inifile_version (void) |
void | inifile_key_free (key_type *key) |
void | inifile_val_free (val_type *val) |
void | inifile_line_free (line_type *ln) |
inifile * | inifile_alloc (php_stream *fp, int readonly, int persistent) |
void | inifile_free (inifile *dba, int persistent) |
key_type | inifile_key_split (const char *group_name) |
char * | inifile_key_string (const key_type *key) |
val_type | inifile_fetch (inifile *dba, const key_type *key, int skip) |
int | inifile_firstkey (inifile *dba) |
int | inifile_nextkey (inifile *dba) |
int | inifile_delete (inifile *dba, const key_type *key) |
int | inifile_delete_ex (inifile *dba, const key_type *key, bool *found) |
int | inifile_replace (inifile *dba, const key_type *key, const val_type *value) |
int | inifile_replace_ex (inifile *dba, const key_type *key, const val_type *value, bool *found) |
int | inifile_append (inifile *dba, const key_type *key, const val_type *value) |
inifile * inifile_alloc | ( | php_stream * | fp, |
int | readonly, | ||
int | persistent ) |