php8.5
Home/ Manual/ mysql_xdevapi / schema/ Schema::getCollections

Schema::getCollections

PHP function Edit on GitHub ✎

Get all schema collections

Description

mysql_xdevapi\Schema::getCollections(): array

Fetch a list of collections for this schema.

Parameters Parameters

Return Values

Array of all collections in this schema, where each array element value is a Collection object with the collection name as the key.

Examples

mysql_xdevapi\Schema::getCollections() example

php
<?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);
?>

The above example will output something similar to:

output
array(1) {
  ["people"]=>
  object(mysql_xdevapi\Collection)#4 (1) {
    ["name"]=>
    string(6) "people"
  }
}

Source: reference/mysql_xdevapi/mysql_xdevapi/schema/getcollections.xml · from the official PHP manual (php/doc-en)