diff options
author | Zak Greant <zak@php.net> | 2003-07-15 18:19:51 +0000 |
---|---|---|
committer | Zak Greant <zak@php.net> | 2003-07-15 18:19:51 +0000 |
commit | c0bd985ad90014e6ccb4a1e10fda8ddc25d5480e (patch) | |
tree | 9ec29e021925a6d75806c9ea13c8c150077c0b59 /ext/dbase/php_dbase.h | |
parent | e3a55ba2975d742fda74a14be4fd73c975f14cb0 (diff) | |
download | php-git-c0bd985ad90014e6ccb4a1e10fda8ddc25d5480e.tar.gz |
Added function dbase_get_header_info
* Passed a handle for an open dbase database, it returns an array of
associative arrays. Each associative array contains information on a
single column, including name, column type, length, precision, ...
Diffstat (limited to 'ext/dbase/php_dbase.h')
-rw-r--r-- | ext/dbase/php_dbase.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/dbase/php_dbase.h b/ext/dbase/php_dbase.h index c51b34b0c3..f445808933 100644 --- a/ext/dbase/php_dbase.h +++ b/ext/dbase/php_dbase.h @@ -35,6 +35,7 @@ PHP_FUNCTION(dbase_get_record); PHP_FUNCTION(dbase_delete_record); PHP_FUNCTION(dbase_pack); PHP_FUNCTION(dbase_get_record_with_names); +PHP_FUNCTION(dbase_get_header_info); #else #define dbase_module_ptr NULL #endif |