(没有版本信息可用,可能只存在于 Git 中)
SqlStatementResult::fetchAll — 从结果中获取所有行
此函数没有参数。
一个包含查询所有结果的数字数组;每个结果都是一个关联数组。如果不存在行,则返回一个空数组。
示例 #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 ) )