PHP Classes

File: examples/stats.php

Recommend this page to a friend!
  Classes of Rafa Rodriguez   Div PHP Nodes   examples/stats.php   Download  
File: examples/stats.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: 813 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 nodes into schema
echo "Adding nodes...";
$db->addNode([
   
"name" => "Peter Nash",
   
"age" => 25,
   
"city" => 'NY'
]);

$id = $db->addNode([
   
"name" => "John Joseph",
   
"age" => 33,
   
"city" => 'FL'
]);

echo
"Count of nodes before delete: {$db->getStats()['count']}\n";

$db->delNode($id);

echo
"Count of nodes after delete: {$db->getStats()['count']}\n";

$db->createIndex(function($node)
{
    return
$node['city'];
});

echo
"Count of nodes with NY city: {$db->getStats('database/contacts/.index/n/y')['count']}\n";