From 43349ea014a2f7b4c9cf1118dacd0f3c7e2a52cc Mon Sep 17 00:00:00 2001 From: Edin Kadribasic Date: Tue, 22 Apr 2003 00:08:48 +0000 Subject: 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 --- ext/sqlite/php_sqlite.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext/sqlite/php_sqlite.h') 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 -- cgit v1.2.1