PHP 大会日本 2024

Collection::getSchema

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

Collection::getSchema获取模式对象

描述

public mysql_xdevapi\Collection::getSchema(): Schema 对象

检索包含集合的模式对象。

参数

此函数没有参数。

返回值

如果成功,则返回模式对象;如果无法为给定集合检索对象,则返回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"
}
添加注释

用户贡献的注释

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