}
/* }}} */
-
/* {{{ proto bool mysqli_change_user(object link, string user, string password, string database) U
Change logged-in user of the active connection */
PHP_FUNCTION(mysqli_change_user)
int user_len, password_len, dbname_len;
ulong rc;
- if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os&&ss&", &mysql_link, mysqli_link_class_entry,
+ if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os&s&s&", &mysql_link, mysqli_link_class_entry,
&user, &user_len, UG(utf8_conv), &password, &password_len, UG(utf8_conv),
&dbname, &dbname_len, UG(utf8_conv)) == FAILURE) {
return;
}
/* }}} */
-
/* {{{ proto string mysqli_character_set_name(object link) U
Returns the name of the character set used for this connection */
PHP_FUNCTION(mysqli_character_set_name)