目录

PHP mysqli real_query() 函数

❮ PHP MySQLi 参考

示例 - 面向对象风格

执行单个 SQL 查询。使用 store_result() 存储结果:

<?php
$mysqli = new mysqli("localhost","my_user","my_password","my_db");

// Check connection
if ($mysqli -> connect_errno) {
  echo "Failed to connect to MySQL: " . $mysqli -> connect_error;
  exit();
}

$mysqli -> real_query("SELECT * FROM Persons");

if ($mysqli -> field_count) {
  $result = $mysqli -> store_result();
  $row = $result -> fetch_row();
  // Free result set
  $result -> free_result();
}

$mysqli -> close();
?>


定义和用法

real_query() / mysqli_real_query() 函数执行单个 SQL 查询。可以使用 store_result() 或 use_result() 函数检索或存储结果。


语法

面向对象风格:

$mysqli -> real_query( query)

程序风格:

mysqli_real_query( connection, query)

参数值

Parameter Description
connection Required. Specifies the MySQL connection to use
query Required. The query to be executed

技术细节

返回值: 成功则为真。失败时为 FALSE
PHP 版本: 5+

❮ PHP MySQLi 参考