Skip to content

Instantly share code, notes, and snippets.

@gcorne
gcorne / Calypso
Created May 19, 2014 21:46 — forked from mtias/Calypso
App
Layout
Toolbar
Section
Sidebar
Filters
Module.Manage -- (index == Sites)
Sites
Posts
<?php
$init = memory_get_usage();
$test_me = array();
$test_me['name'] = 'Joseph Scott';
$test_me['city'] = 'Sandy';
$test_me['state'] = 'Utah';
echo "MEM: " . ( memory_get_usage() - $init ) . "\n";
<?php
class Test {
public $name;
public $city;
public $state;
public function __construct( $name, $city, $state ) {
$this->name = $name;
$this->city = $city;