PHP Namespaces in Under 5 Minutes
PHP Namespaces in under 5 Minutes
  Unlock this challenge
Login Register

Challenge 1 / 4

Check out this Koala class:

namespace Animal\Adorable;

class Koala
{
}

And this code that uses it:

$koala = new \Animal\Adorable\Koala();

Is that first slash in \Animal\Adorable\Koala necessary?

Skip challenges and

Turn Challenges Off?

All further challenges will be skipped automatically.
You can re-enable challenges at any time on this page or from your account page.