我是学说的初学者。我刚刚安装了 pear + 学说 2.3.3 并想对其进行测试。
为了测试教义,我写了一个名为“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
效果很好!
但是现在,当我想将我的 bootstrap.php 包含在“普通”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");
?>
引导程序.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));
它返回真:
但这确实返回false:
use Doctrine\ORM\Tools\Setup;
var_dump(class_exists('Setup', false));
难道我做错了什么?
此致