(无版本信息可用,可能只存在于 Git 中)
RowResult::fetchOne — 从结果中获取行
此函数没有参数。
结果,作为关联数组或 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 )