(无版本信息可用,可能仅存在于 Git 中)
Collection::getSchema — 获取模式对象
检索包含集合的模式对象。
此函数没有参数。
如果成功,则返回模式对象;如果无法为给定集合检索对象,则返回null
。
示例 #1 mysql_xdevapi\Collection::getSchema() 示例
<?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");
$collection = $schema->createCollection("people");
var_dump($collection->getSchema());
?>
以上示例将输出类似以下内容
object(mysql_xdevapi\Schema)#9 (1) { ["name"]=> string(11) "addressbook" }