Beispiel #1
0
<?php 
require_once "vendor/autoload.php";
echo "input: ";
$fp = fopen("php://stdin", "r");
$str = rtrim(fgets($fp, 1024));
$foo = new Foo\Foo();
echo "output: " . $foo->Reverse($str);
Beispiel #2
0
<?php

require "ns_028.inc";
class Foo
{
    function __construct()
    {
        echo "Method - " . __CLASS__ . "::" . __FUNCTION__ . "\n";
    }
    static function Bar()
    {
        echo "Method - " . __CLASS__ . "::" . __FUNCTION__ . "\n";
    }
}
$x = new Foo();
Foo\Bar();
$x = new Foo\Foo();
Foo\Foo::Bar();
\Foo\Bar();