PHP Function List
mysqli, doesn't exist. Closest matches:
- mysqli
- msql
- mysql_ping
- mysql_info
- mysqli_stmt
- mysqli_fetch
- mysqli_report
- mysqli_driver
- mysqli_result
- mssql_bind
- mysql_stat
- mssql_init
- mysqli_execute
- mysqli_set_opt
- sqlite3
- mysql_list_dbs
- mysqli_warning
- mysqli_connect
- mysql_errno
- mysql_close
Site Search Results
-
别名和过时的Mysqli 函数 Table of Contents mysqli_bind_param — mysqli_stmt_bind_param的别名 mysqli_bind_result — mysqli_stmt_bind_result的别名 mysqli_client_encoding — mysqli_character_set_name的别名
-
mysqli_get_metadata — Alias for mysqli_stmt_result_metadata mysqli_master_query — Enforce execution of a query on the master in a master/slave setup mysqli_param_count — Alias for mysqli_stmt_param_count
-
Table of Contents mysqli_driver::embedded_server_end — Stop embedded server mysqli_driver::embedded_server_start — Initialize and start embedded server
-
add a note User Contributed Notes mysqli_connect There are no user contributed notes for this page.
-
Prepares the SQL query, and returns a statement handle to be used for further operations on the statement. The query must consist of a single SQL statement. The parameter markers must be bound to application variables using mysqli_stmt_bind_param() ...
-
For example, it is possible to enable the MySQL extension to use the MySQL Client Library (libmysql), while configuring the mysqli extension to use the MySQL Native Driver. However, all permutations of extension and client library are possible.
-
The mysqli_sql_exception class is not available to PHP 5.05 I used this code to catch errors <?php $query = "SELECT XXname FROM customer_table "; $res = $mysqli-> query ($query); if (! $res) { printf ("Errormessage: %s\n", $mysqli-> error);
-
mysqli_report() 在开发和测试阶段对于你的查询和代码测试的提升方面是一个非常有用的函数。 它依赖flags参数报告从mysqli函数调用或没有使用索引(或使用了坏的索引)的查询引发的错误。
-
$mysqli = new mysqli ("localhost", "my_user", "my_password", "world"); /* 检查连接 */ if (mysqli_connect_errno ()) { printf ("Connect failed: %s\n", mysqli_connect_error ()); exit();} if (! $mysqli-> query ("SET a=1"))
-
Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init() user The MySQL user name. password The MySQL password. database The database to change to. If desired, the NULL value may be passed resulting in only changing ...

Other forms of search
To search the string "mysqli," using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
