(无版本信息可用,可能只存在于 Git 中)
Schema::getCollections — 获取所有模式集合
此函数没有参数。
此模式中所有集合的数组,其中每个数组元素值都是一个 Collection 对象,集合名称作为键。
示例 #1 mysql_xdevapi\Schema::getCollections() 示例
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$session->sql("DROP DATABASE IF EXISTS addressbook")->execute();
$session->sql("CREATE DATABASE addressbook")->execute();
$schema = $session->getSchema("addressbook");
$collect = $schema->createCollection("people");
$collect->add('{"name": "Fred", "age": 21, "job": "Construction"}')->execute();
$collect->add('{"name": "Wilma", "age": 23, "job": "Teacher"}')->execute();
$collections = $schema->getCollections();
var_dump($collections);
?>
上面的示例将输出类似于以下内容
array(1) { ["people"]=> object(mysql_xdevapi\Collection)#4 (1) { ["name"]=> string(6) "people" } }