PHP Conference Japan 2024

TableSelect::where

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

TableSelect::where设置选择搜索条件

描述

public mysql_xdevapi\TableSelect::where(string $where_expr): mysql_xdevapi\TableSelect

设置用于过滤的搜索条件。

参数

where_expr

定义用于过滤文档或记录的搜索条件。

返回值

一个TableSelect对象。

范例

例 1 mysql_xdevapi\TableSelect::where() 例子

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

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

$result = $table->select('name','age')
->
where('name like :name and age > :age')
->
bind(['name' => 'John', 'age' => 42])
->
execute();

$row = $result->fetchAll();
print_r($row);
?>

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

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

用户贡献注释

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