diff options
author | Edin Kadribasic <edink@php.net> | 2003-04-22 00:08:48 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2003-04-22 00:08:48 +0000 |
commit | 43349ea014a2f7b4c9cf1118dacd0f3c7e2a52cc (patch) | |
tree | 0bef9be20b31544ecc7f715e9aa413e5178a1f98 /ext/sqlite/php_sqlite.h | |
parent | 04c5e2fc067507c7d8142259eb74d784eb048189 (diff) | |
download | php-git-43349ea014a2f7b4c9cf1118dacd0f3c7e2a52cc.tar.gz |
Added sqlite.assoc_case ini entry with 0 as the default value.
0 - Make no changes to the keys in the associative array
1 - Change the keys to uppercase
2 - Change the keys to lowercase
Diffstat (limited to 'ext/sqlite/php_sqlite.h')
-rw-r--r-- | ext/sqlite/php_sqlite.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/sqlite/php_sqlite.h b/ext/sqlite/php_sqlite.h index d85ac4bc3e..d1f4a4ee2c 100644 --- a/ext/sqlite/php_sqlite.h +++ b/ext/sqlite/php_sqlite.h @@ -69,6 +69,10 @@ PHP_FUNCTION(sqlite_error_string); PHP_FUNCTION(sqlite_create_aggregate); PHP_FUNCTION(sqlite_create_function); +ZEND_BEGIN_MODULE_GLOBALS(sqlite) + int assoc_case; +ZEND_END_MODULE_GLOBALS(sqlite) + #ifdef ZTS #define SQLITE_G(v) TSRMG(sqlite_globals_id, zend_sqlite_globals *, v) #else |