diff options
author | Frank M. Kromann <fmk@php.net> | 2001-04-17 17:39:43 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2001-04-17 17:39:43 +0000 |
commit | f09a36b91f4f57660475755528921587b7192c9b (patch) | |
tree | e8ebc403a7592b627bde568c0feabf2065cce5b4 /ext/fbsql/php_fbsql.h | |
parent | 86c84da7c26c7a2668f4965fe29a3fd61d818ee0 (diff) | |
download | php-git-f09a36b91f4f57660475755528921587b7192c9b.tar.gz |
Adding fbsql_fetch_assoc() functon
Diffstat (limited to 'ext/fbsql/php_fbsql.h')
-rw-r--r-- | ext/fbsql/php_fbsql.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/fbsql/php_fbsql.h b/ext/fbsql/php_fbsql.h index 5d1e20a1a5..0c62719c25 100644 --- a/ext/fbsql/php_fbsql.h +++ b/ext/fbsql/php_fbsql.h @@ -67,6 +67,7 @@ PHP_FUNCTION(fbsql_num_rows); PHP_FUNCTION(fbsql_num_fields); PHP_FUNCTION(fbsql_fetch_row); PHP_FUNCTION(fbsql_fetch_array); +PHP_FUNCTION(fbsql_fetch_assoc); PHP_FUNCTION(fbsql_fetch_object); PHP_FUNCTION(fbsql_data_seek); PHP_FUNCTION(fbsql_fetch_lengths); @@ -88,6 +89,8 @@ PHP_FUNCTION(fbsql_username); PHP_FUNCTION(fbsql_password); PHP_FUNCTION(fbsql_warnings); +static void php_fbsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type); + ZEND_BEGIN_MODULE_GLOBALS(fbsql) long allowPersistent; long generateWarnings; |