PHP Classes

File: examples/rename.php

Recommend this page to a friend!
  Classes of Rafa Rodriguez   Div PHP Nodes   examples/rename.php   Download  
File: examples/rename.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Div PHP Nodes
Manage database of objects stored in record files
Author: By
Last change:
Date: 5 years ago
Size: 506 bytes
 

Contents

Class file image Download
<?php

/**
 * Div PHP Nodes
 *
 * Example
 *
 * @author Rafa Rodriguez [@rafageist] <rafageist@hotmail.com>
 */

include "../divNodes.php";

// Adding a schema on the fly if not exists
$db = new divNodes("database/contacts");

// Deleting all nodes in schema database/contacts
$db->delNodes();

// Add node into schema database/contacts
$db->addNode([
   
"name" => "Peter Nash",
   
"age" => 25,
   
"city" => 'NY'
], "peter");

$db->addIndex(["ny"], "peter", null, null, true);

$db->renameNode("peter", "nash");