即時通訊與初學者的教條。我剛安裝了pear + doctrine 2.3.3並想測試它。PHP學說初學者:學說 ORM 工具安裝程序找不到
測試教義我寫了一個名爲 「Person」
/**
* @Entity
*/
class person
{
/** @Id @Column(type="integer") @GeneratedValue * */
private $id;
/** @Column(type="string") * */
private $name;
/** @Column(type="string") * */
private $surname;
//some getters and setters ...
}
類之後,我做了我的bootstrap.php文件,bootstrep_doctrine.php和CLI-config.php文件的文件並運行命令:
doctrine orm:schema-tool:create
工作正常!
但是現在,當我想在一個「正常」的php文件我bootstrap.php中,創建一個「人」,我收到以下錯誤:
Fatal error: Class 'Doctrine\ORM\Tools\Setup' not found
in /var/www/vms/bootstrap_doctrine.php on line 15
文件看起來像如下:
<?php
$debug = true;
if($debug){
error_reporting(E_ALL);
ini_set("display_errors", "on");
ini_set("display_startip_errors", "on");
}
require_once '../bootstrap.php';
include_once ('testClassOrm.php');
$person = new person();
$person = new person();
$person->setName("Hans");
?>
bootstrap.php中:
if(!class_exists("Doctrine\Common\Version", false)){
require_once 'bootstrap_doctrine.php';
}
bootstrap_doctrine.php
use Doctrine\ORM\Tools\Setup;
use Doctrine\ORM\EntityManager;
$paths = array("entities/");
$isDevMode = true;
// the connection configuration
$dbParams = array(
'driver' => 'pdo_mysql',
'user' => 'TEST',
'password' => 'TEST',
'dbname' => 'test',
);
$config = Setup::createAnnotationMetadataConfiguration($paths, $isDevMode);
$em = EntityManager::create($dbParams, $config);
我檢查/ usr/share/pear /是否在php_include路徑中。它是..
require_once 'System.php';
var_dump(class_exists('System', false));
返回true:
但是這一次確實返回false:
use Doctrine\ORM\Tools\Setup;
var_dump(class_exists('Setup', false));
我做錯什麼了嗎?
問候
你忘了設定自動加載!你是如何安裝ORM的? – Ocramius