Пример #1
0
<?php

Singleton::register(array('name' => "button", "variations" => array("blue" => array("probability" => 1.0 / 12.0), "green" => array("probability" => 1.0 / 6.0), "red" => array(), "yellow" => array())));
// todo assert these are all the same
$name1 = Singleton::test("button")->name;
$name2 = Singleton::test("button")->name;
$name3 = Singleton::test("button")->name;
$name4 = Singleton::test("button")->name;
$name5 = Singleton::test("button")->name;
Пример #2
0
<?php

function autoload($class_name)
{
    $path = $class_name . '.class.php';
    if (file_exists($path)) {
        require_once $path;
    }
}
spl_autoload_register('autoload');
$s = Singleton::getInstance();
echo $s->test();
//erro fatal
$s2 = new Singleton();
echo '<br />' . $s2->test();