I got the Fatal Error: Fatal error: Class 'app\Autoloader' not found in C:\wamp64\www\WE\index.php In other words: Fatal error: exactly/the/good/way/class not found
begin of my script index.php
<?php
use \app\Autoloader;
Autoloader::register();
Begin of my autoloader script:
namespace app;
class Autoloader{...}
Arborescence:
- Racine local server
- app
- [...]
- Autoloader.php
- app
- index.php
Why this fatal error ?? The way mentionned in the error php is right... Thaks for help !