0
我在同一個目錄下說這個文件..簡單的命名空間不工作
file1.php
<?php
namespace Cars;
class Model
{
public function hello()
{
return "Hello";
}
}
file2.php
<?php
$car = new \Cars\Model;
$car->hello();
當我運行file1.php,我我得到一個致命的錯誤找不到Class'Cars \ Model'找不到類'Cars \ Model'
入住此[PHPDOCS命名空間(http://www.php.net/manual/en/language.namespaces.basics.php)..希望這會幫助你.. – 2014-01-30 06:49:48