Ejemplo n.º 1
0
function wrapper()
{
    PPP::import("samples/2");
}
Ejemplo n.º 2
0
<?php

PPP::import("foo/bar");
class Foo
{
    /*
    Block motha f*****g quotes
    */
    function __construct($foo, $bar)
    {
        $this->foo = $foo;
        $this->say($foo, true);
    }
    private function say($msg, $silly)
    {
        if ($silly) {
            echo $msg;
        } else {
            echo ">>>>{$msg}<<<<";
        }
    }
}
$c = new Foo("hello", 123);