/PHP-7.0/ext/dba/libinifile/ |
H A D | inifile.h | 46 } inifile; typedef 48 val_type inifile_fetch(inifile *dba, const key_type *key, int skip); 49 int inifile_firstkey(inifile *dba); 50 int inifile_nextkey(inifile *dba); 51 int inifile_delete(inifile *dba, const key_type *key); 52 int inifile_delete_ex(inifile *dba, const key_type *key, zend_bool *found); 53 int inifile_replace(inifile *dba, const key_type *key, const val_type *val); 54 int inifile_replace_ex(inifile *dba, const key_type *key, const val_type *val, zend_bool *found); 55 int inifile_append(inifile *dba, const key_type *key, const val_type *val); 65 inifile * inifile_alloc(php_stream *fp, int readonly, int persistent); [all …]
|
H A D | inifile.c | 84 inifile *dba; in inifile_alloc() 93 dba = pemalloc(sizeof(inifile), persistent); in inifile_alloc() 94 memset(dba, 0, sizeof(inifile)); in inifile_alloc() 102 void inifile_free(inifile *dba, int persistent) in inifile_free() 167 static int inifile_read(inifile *dba, line_type *ln) { in inifile_read() 289 int inifile_firstkey(inifile *dba) { in inifile_firstkey() 298 int inifile_nextkey(inifile *dba) { in inifile_nextkey() 313 static int inifile_truncate(inifile *dba, size_t size) in inifile_truncate() 387 static int inifile_copy_to(inifile *dba, size_t pos_start, size_t pos_end, inifile **ini_copy) in inifile_copy_to() 417 static int inifile_filter(inifile *dba, inifile *from, const key_type *key, zend_bool *found) in inifile_filter() [all …]
|
/PHP-7.0/ext/dba/ |
H A D | dba_inifile.c | 40 inifile *dba = info->dbf 53 DBA_OPEN_FUNC(inifile) in DBA_OPEN_FUNC() argument 60 DBA_CLOSE_FUNC(inifile) in DBA_CLOSE_FUNC() argument 67 DBA_FETCH_FUNC(inifile) in DBA_FETCH_FUNC() argument 80 DBA_UPDATE_FUNC(inifile) in DBA_UPDATE_FUNC() argument 108 DBA_EXISTS_FUNC(inifile) in DBA_EXISTS_FUNC() argument 124 DBA_DELETE_FUNC(inifile) in DBA_DELETE_FUNC() argument 138 DBA_FIRSTKEY_FUNC(inifile) in DBA_FIRSTKEY_FUNC() argument 151 DBA_NEXTKEY_FUNC(inifile) in DBA_NEXTKEY_FUNC() argument 174 DBA_SYNC_FUNC(inifile) in DBA_SYNC_FUNC() argument [all …]
|
H A D | php_inifile.h | 8 DBA_FUNCS(inifile);
|
H A D | config.w32 | 12 ADD_SOURCES("ext/dba/libinifile", "inifile.c", "dba");
|
H A D | config.m4 | 563 PHP_ARG_ENABLE(inifile,, 564 [ --disable-inifile DBA: INI support (bundled)], $php_dba_enable, no) 608 ini_sources="libinifile/inifile.c" 611 PHP_DBA_STD_RESULT(inifile, [INI File])
|
H A D | README | 35 inifile This is available since PHP 4.3.3 to be able to modify php.ini
|
H A D | dba.c | 355 DBA_HND(inifile, DBA_STREAM_OPEN|DBA_LOCK_ALL|DBA_CAST_AS_FD) /* No lock in lib */
|
/PHP-7.0/ext/dba/tests/ |
H A D | bug70825.phpt | 6 if (!in_array('inifile', dba_handlers())) die('skip inifile handler not available'); 12 $db = dba_open($filename, 'n', 'inifile'); 22 $db = dba_open($filename, 'n', 'inifile'); 32 $db = dba_open($filename, 'n', 'inifile'); 42 $db = dba_open($filename, 'n', 'inifile');
|
H A D | bug71514.phpt | 6 if (!in_array('inifile', dba_handlers())) die('skip inifile handler not available'); 12 $db = dba_open($filename, 'c', 'inifile');
|
H A D | bug62490.phpt | 2 Bug #62490 (dba_delete returns true on missing item (inifile)) 5 $handler = "inifile"; 10 $handler = "inifile";
|
H A D | dba_inifile.phpt | 5 $handler = 'inifile'; 10 $handler = 'inifile'; 20 database handler: inifile
|
/PHP-7.0/ext/spl/examples/ |
H A D | inigroups.inc | 36 parent::__construct(new DbaReader($file, 'inifile'), '^\[.*\]$');
|
/PHP-7.0/ |
H A D | .gitattributes | 13 ext/dba/libinifile/inifile.c ident
|
H A D | UPGRADING | 452 . dba_delete() now returns false if the key was not found for the inifile
|
H A D | NEWS | 2470 . Fixed bug #62490 (dba_delete returns true on missing item (inifile)). (Mike)
|