Doctrine无法在项目的models
文件夹中找到我的实体。
测试文件:
<?php
use Doctrine\ORM\Tools\Setup;
use Doctrine\ORM\EntityManager;
require_once "vendor/autoload.php";
$isDevMode = true;
$config = Setup::createAnnotationMetadataConfiguration(array("models"), $isDevMode);
$dbParams = array(
'driver' => 'pdo_mysql',
'user' => '',
'password' => '',
'dbname' => '',
);
$entityManager = EntityManager::create($dbParams, $config);
try {
/** @var \models\Vars $repo */
$repo = $entityManager->getRepository('Vars');
echo 'success';
} catch (Exception $e) {
echo $e->getMessage();
}
模型/瓦尔:
<?php
namespace models;
use Doctrine\ORM\Annotation as ORM;
/**
* @ORM\Entity(name="Vars")
* @ORM\Table(name="vars")
*/
class Vars
{
}
我在php中的新手。无论如何,谢谢。
答案 0 :(得分:-1)
解决。我只是从实体中删除命名空间,现在一切正常。但这是正确的解决方案吗?