PHP-Code in namespaces/03_step/class/MyClassName.class.php

<?php
namespace Amerika\Dakota\Indianerland\Sioux;

class MyClassName {
	function woBinIch() {
		$str = "Hallo, ich bin ein Indianer in einer Klasse.<br>";
        $str .= "Ich wohne im Namespace ";
        $str .= __namespace__;

        return $str;
	}
}
?>