summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_fe.c
diff options
context:
space:
mode:
authorGeorg Richter <georg@php.net>2003-06-22 08:46:39 +0000
committerGeorg Richter <georg@php.net>2003-06-22 08:46:39 +0000
commit5655ebe6f26301f0f087623f8e8508be73b3cbcc (patch)
tree6f7f2a8db6e9dadb6ab455fc9a4b7005baa0f901 /ext/mysqli/mysqli_fe.c
parentbb37c9c335128f9095c4173d5f0fe22efc80ce5c (diff)
downloadphp-git-5655ebe6f26301f0f087623f8e8508be73b3cbcc.tar.gz
added new function mysqli_stmt_num_rows
Diffstat (limited to 'ext/mysqli/mysqli_fe.c')
-rw-r--r--ext/mysqli/mysqli_fe.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/mysqli/mysqli_fe.c b/ext/mysqli/mysqli_fe.c
index fd45d77c20..47eb2cbd36 100644
--- a/ext/mysqli/mysqli_fe.c
+++ b/ext/mysqli/mysqli_fe.c
@@ -114,6 +114,7 @@ function_entry mysqli_functions[] = {
PHP_FE(mysqli_stmt_close, NULL)
PHP_FE(mysqli_stmt_errno, NULL)
PHP_FE(mysqli_stmt_error, NULL)
+ PHP_FE(mysqli_stmt_num_rows, NULL)
#if MYSQL_VERSION_ID >= 40101
PHP_FE(mysqli_stmt_sqlstate, NULL)
#endif
@@ -231,6 +232,7 @@ function_entry mysqli_stmt_methods[] = {
PHP_FALIAS(close,mysqli_stmt_close,NULL)
PHP_FALIAS(errno,mysqli_stmt_errno,NULL)
PHP_FALIAS(error,mysqli_stmt_error,NULL)
+ PHP_FALIAS(num_rows, mysqli_stmt_num_rows,NULL)
#if MYSQL_VERSION_ID >= 40101
PHP_FALIAS(sqlstate, mysqli_stmt_sqlstate,NULL)
#endif