(没有可用版本信息,可能只在 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" }