Hi guys so i'm trying to do the #3th example of http://php.net/manual/en/language.namespaces.importing.php.
This is my code:
include 'religions/norse/Ragnar.php';
use Religion\Person;
$name = 'Ragnar';
$character = new $name;
$character->introduce();
And for the Ragnar class:
namespace Religion\Person;
class Ragnar {
public function introduce(){
echo "My name is Ragnar, i'm a nord from Stokholm";
}
}
But when I go to the website i'm getting this error:
Fatal error: Class 'Ragnar' not found in /home/test02/domains/t.test0.nl/public_html/namespaces/test.php on line 11
So it says that my class is not found but I don't know why...
Can someone help me with this??