存在用于类型属性的 MYSQLI_TYPE_* 常量(列于 https://php.net/manual/en/ref.mysqli.php 中)。
例如
<?php
if ($finfo->type == MYSQLI_TYPE_VAR_STRING)
// 一个 VARCHAR
(PHP 5, PHP 7, PHP 8)
mysqli::$field_count -- mysqli_field_count — 返回最近查询的列数
面向对象风格
过程式风格
返回由 mysql
参数表示的连接上最近查询的列数。当使用 mysqli_store_result() 函数时,此函数可用于确定查询是否应该产生一个非空的結果集,而无需知道查询的性质。
一个整数,表示结果集中的字段数。
示例 #1 $mysqli->field_count 示例
面向对象风格
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "test");
$mysqli->query( "DROP TABLE IF EXISTS friends");
$mysqli->query( "CREATE TABLE friends (id int, name varchar(20))");
$mysqli->query( "INSERT INTO friends VALUES (1,'Hartmut'), (2, 'Ulf')");
$mysqli->real_query("SELECT * FROM friends");
if ($mysqli->field_count) {
/* 这是一条 select/show 或 describe 查询 */
$result = $mysqli->store_result();
/* 处理结果集 */
$row = $result->fetch_row();
/* 释放结果集 */
$result->close();
}
/* 关闭连接 */
$mysqli->close();
?>
过程式风格
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "test");
mysqli_query($link, "DROP TABLE IF EXISTS friends");
mysqli_query($link, "CREATE TABLE friends (id int, name varchar(20))");
mysqli_query($link, "INSERT INTO friends VALUES (1,'Hartmut'), (2, 'Ulf')");
mysqli_real_query($link, "SELECT * FROM friends");
if (mysqli_field_count($link)) {
/* 这是一条 select/show 或 describe 查询 */
$result = mysqli_store_result($link);
/* 处理结果集 */
$row = mysqli_fetch_row($result);
/* 释放结果集 */
mysqli_free_result($result);
}
/* 关闭连接 */
mysqli_close($link);
?>
存在用于类型属性的 MYSQLI_TYPE_* 常量(列于 https://php.net/manual/en/ref.mysqli.php 中)。
例如
<?php
if ($finfo->type == MYSQLI_TYPE_VAR_STRING)
// 一个 VARCHAR