summaryrefslogtreecommitdiff
path: root/ext/mysql/php_mysql.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2002-07-16 19:26:23 +0000
committerfoobar <sniper@php.net>2002-07-16 19:26:23 +0000
commitdcb0523894a4949b72931ba1ce5f7512b09f1906 (patch)
tree20a76d8d71beb0aea086b8e8123f69df8ab6005f /ext/mysql/php_mysql.c
parent852f4f2c2984ecf52490b20f12730a7caaa86d3f (diff)
downloadphp-git-dcb0523894a4949b72931ba1ce5f7512b09f1906.tar.gz
fix protos
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r--ext/mysql/php_mysql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c
index 1eaf4e3c25..a9c789fa53 100644
--- a/ext/mysql/php_mysql.c
+++ b/ext/mysql/php_mysql.c
@@ -778,7 +778,7 @@ static int php_mysql_get_default_link(INTERNAL_FUNCTION_PARAMETERS)
}
/* }}} */
-/* {{{ proto resource mysql_connect([string hostname[:port][:/path/to/socket]] [, string username] [, string password] [, bool new])
+/* {{{ proto resource mysql_connect([string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]])
Opens a connection to a MySQL Server */
PHP_FUNCTION(mysql_connect)
{
@@ -786,7 +786,7 @@ PHP_FUNCTION(mysql_connect)
}
/* }}} */
-/* {{{ proto resource mysql_pconnect([string hostname[:port][:/path/to/socket]] [, string username] [, string password])
+/* {{{ proto resource mysql_pconnect([string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]])
Opens a persistent connection to a MySQL Server */
PHP_FUNCTION(mysql_pconnect)
{