SqlStatementResult::fetchAll

(没有版本信息可用,可能只存在于 Git 中)

SqlStatementResult::fetchAll从结果中获取所有行

描述

public mysql_xdevapi\SqlStatementResult::fetchAll(): array

从结果集中获取所有行。

警告

此函数目前没有文档;只有它的参数列表可用。

参数

此函数没有参数。

返回值

一个包含查询所有结果的数字数组;每个结果都是一个关联数组。如果不存在行,则返回一个空数组。

示例

示例 #1 mysql_xdevapi\SqlStatementResult::fetchAll() 示例

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS dbtest")->execute();
$session->sql("CREATE DATABASE dbtest")->execute();
$session->sql("CREATE TABLE dbtest.workers(name text, age int, job text)")->execute();
$session->sql("INSERT INTO dbtest.workers values ('John', 42, 'bricklayer'), ('Sam', 33, 'carpenter')")->execute();

$schema = $session->getSchema("dbtest");
$table = $schema->getTable("workers");

$rows = $session->sql("SELECT * FROM dbtest.workers")->execute()->fetchAll();

print_r($rows);
?>

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

Array
(
    [0] => Array
        (
            [name] => John
            [age] => 42
        )
    [1] => Array
        (
            [name] => Sam
            [age] => 33
        )
)
添加注释

用户贡献注释

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