PHP Conference Japan 2024

RowResult::fetchOne

(无版本信息可用,可能仅存在于 Git 中)

RowResult::fetchOne从结果中获取行

描述

public mysql_xdevapi\RowResult::fetchOne(): array

从结果集中获取一个结果。

警告

此函数目前未记录;仅提供其参数列表。

参数

此函数没有参数。

返回值

结果,作为关联数组或null(如果不存在结果)。

示例

示例 #1 mysql_xdevapi\RowResult::fetchOne() 示例

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$session->sql("DROP DATABASE addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$session->sql("CREATE TABLE addressbook.names(name text, age int)")->execute();
$session->sql("INSERT INTO addressbook.names values ('John', 42), ('Sam', 33)")->execute();

$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");

$row = $table->select('name', 'age')->where('age < 40')->execute()->fetchOne();

print_r($row);

以上示例将输出类似以下内容

Array
(
    [name] => Sam
    [age] => 33
)
添加注释

用户贡献注释

此页面没有用户贡献注释。
To Top