diff options
author | Marcus Boerger <helly@php.net> | 2003-09-06 19:34:48 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-09-06 19:34:48 +0000 |
commit | 1ae13e543a6d959d3ad43081f7e73a239c2b19d9 (patch) | |
tree | 11eca52571ca91372fecb685f9e785f27a816247 /ext/mysqli/php_mysqli.h | |
parent | f6239c33bc5208fd3e9e6bf0f8a862b1f97a34d8 (diff) | |
download | php-git-1ae13e543a6d959d3ad43081f7e73a239c2b19d9.tar.gz |
Modify mysqli_fetch_object() to be able to instantiate a selected class and
pass parameters to the constructor.
Diffstat (limited to 'ext/mysqli/php_mysqli.h')
-rw-r--r-- | ext/mysqli/php_mysqli.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/php_mysqli.h b/ext/mysqli/php_mysqli.h index 4b0ca26685..e437f754be 100644 --- a/ext/mysqli/php_mysqli.h +++ b/ext/mysqli/php_mysqli.h @@ -90,7 +90,7 @@ extern function_entry mysqli_functions[]; extern function_entry mysqli_link_methods[]; extern function_entry mysqli_stmt_methods[]; extern function_entry mysqli_result_methods[]; -extern void php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAMETERS, int flag); +extern void php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAMETERS, int override_flag, int into_object); extern void php_clear_stmt_bind(STMT *stmt); extern void php_free_stmt_bind_buffer(BIND_BUFFER bbuf, int type); |