View Single Post
Old 06-28-2009, 11:55 AM   #10 (permalink)
Kalle
The Frequenter
Zend Certified 
 
Join Date: Sep 2007
Location: Denmark
Posts: 352
Thanks: 8
Kalle is on a distinguished road
Default

Quote:
Originally Posted by Salathe View Post
I have this Python script, make it PHP!

Python Code:
class Hello:
  @staticmethod
  def world():
    print "Hello World!"

Hello.world()
PHP Code:
<?php
namespace Hello
{
    class World
    {
        public function __invoke()
        {
            echo('Hello World!');
        }
    }
}

$welcome = new Hello\World;
$welcome();

done with our beloved namespace separator! :)
__________________
Send a message via MSN to Kalle Send a message via Skype™ to Kalle
Kalle is offline  
Reply With Quote