Schema::getCollections

(No version information available, might only be in Git)

Schema::getCollectionsスキーマに属する全てのコレクションを取得する

説明

public mysql_xdevapi\Schema::getCollections(): array

このスキーマに属するコレクションのリストを取得します。

パラメータ

この関数にはパラメータはありません。

戻り値

このスキーマに属する全てのコレクションを配列にして返します。 個々の要素は、コレクション名をキーとし、コレクションオブジェクトが値となります。

例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"
  }
}
関連キーワード:  コレクション, スキーマ, 取得, xdevapi, getCollections, array, パラメータ, Collection, 出力, オブジェクト