06-28-2009, 11:55 AM
|
#10 (permalink)
|
|
The Frequenter
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
|
Quote:
Originally Posted by Salathe
I have this Python script, make it PHP!
Python Code:
class Hello: @staticmethod def world(): print "Hello World!"
Hello.world()
|
PHP Code:
<?phpnamespace Hello { class World { public function __invoke() { echo('Hello World!'); } }}$welcome = new Hello\World; $welcome();
done with our beloved namespace separator! :)
__________________
|
|
|