- PHP code
<?php #test.class.phpnamespace myNamespace; class MyClass { public function Show(){ echo "hello"; }} ?>
- PHP code
<?php#index.php require_once "test.class.php"; $c1 = new myNamespace::MyClass(); $c1->Show();?>
这里有报错了。Fatal error: Class 'myNamespace' not found in /var/www/HelloWorld/index.php on line 4
用明明空间的方式引用不是这样写的?
------解决方案--------------------
$c1 = new myNamespace\MyClass();可以的
------解决方案--------------------
$c1= new myNamespace\MyClass();
参考
http://jackyrong.iteye.com/blog/900964