script named tester.php
<?php
namespace my;
class Tester {
public function greet() {
echo "Hello ! <br />";
}
}
a new script named tester1.php :
<?php
use my;
$obj = new Tester();
$obj->greet();
When I run tester1.php I get this error:
Warning: The use statement with non-compound name 'my' has no effect
in /opt/lampp/htdocs/tester_1.php on line 2
Fatal error: Class 'Tester' not found in /opt/lampp/htdocs/tester_1.php on line 4
Why am I getting this error ? Both these scripts are in the same directory /opt/lampp/htdocs/.