Skip to content

Instantly share code, notes, and snippets.

<?php
const CLASS_PUBLIC = "";
const CLASS_PROTECTED = "\0*\0";
const CLASS_PRIVATE = "\0stdClass\0";
function create_class ($class) {
$class = (object)$class;
foreach ($class as $prop)
if ($prop instanceof Closure)
$prop->bindTo($class);