爲什麼我收到錯誤?在同一個命名空間中的類..在php中的命名空間和類
PHP 5.3.0
namespace ExampleSystem\Core;
class Test {
public function __construct() {
print 'Test ok';
}
}
// Fatal error: Class 'Test' not found in ...
$class_name = 'Test';
$obj = new $class_name;
// Ok
$class_name = 'ExampleSystem\Core\Test';
$obj = new $class_name;
// Ok
$obj = new Test;
所以*這就是*傳說中的命名空間是什麼樣子...... – 2009-11-28 17:58:38