(无版本信息可用,可能仅在 Git 中)
Schema::getCollection — 从模式获取集合
name
要检索的集合名称。
所选集合的 Collection 对象。
示例 #1 mysql_xdevapi\Schema::getCollection() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS food")->execute();
$session->sql("CREATE DATABASE food")->execute();
$schema = $session->getSchema("food");
$schema->createCollection("trees");
// ...
$trees = $schema->getCollection("trees");
var_dump($trees);
以上示例将输出类似于以下内容
object(mysql_xdevapi\Collection)#3 (1) { ["name"]=> string(5) "trees" }