如何安装doctrine 2.2 ORM

时间:2012-06-23 09:18:29

标签: php doctrine-orm

我已经下载了doctrine 2.2 orm。我已经阅读了它的安装指南,但我无法正确理解其文档。有人可以指导我完成学说的设置过程。我以前一直在使用Java中的Hibernate ORM框架。它们具有出色的文档,易于理解,适合初学者。 我没有找到该学说的教条文件。 有人可以提供一些关于学说的示例项目吗?

2 个答案:

答案 0 :(得分:1)

有多种方法可以将教条安装到您的网站项目中。我会告诉你一个简单的选择:

  • 下载doctrine包并在服务器中解压缩。现在您的目录如下所示:

    本地主机/学说
    本地主机/教义/通用
    本地主机/学说/ ORM
    本地主机/学说/ DBAL

  • 您需要创建两个附加文件夹才能存储模型(持久性实体)和代理

    本地主机/模型
    本地主机/代理

  • 创建一个类,负责创建 EntityManager 对象以及与数据库的连接。让我们创建一个名为Doctrine的魔术类:

    本地主机/ doctrine.php

设置属性:

<?php
use Doctrine\Common\ClassLoader,
    Doctrine\ORM\Configuration,
    Doctrine\ORM\EntityManager,
    Doctrine\Common\Cache\ArrayCache,
    Doctrine\DBAL\Logging\EchoSQLLogger;

class Doctrine{

  public $em = null;

  public function __construct()
  {

    require_once 'Doctrine/Common/ClassLoader.php';

    $doctrineClassLoader = new ClassLoader('Doctrine',  '/');
    $doctrineClassLoader->register();
    $entitiesClassLoader = new ClassLoader('models', '/models/');
    $entitiesClassLoader->register();
    $proxiesClassLoader = new ClassLoader('Proxies', '/proxies/');
    $proxiesClassLoader->register();

    // Set up caches
    $config = new Configuration;
    $cache = new ArrayCache;
    $config->setMetadataCacheImpl($cache);
    $driverImpl = $config->newDefaultAnnotationDriver(array('/models/Entities'));
    $config->setMetadataDriverImpl($driverImpl);
    $config->setQueryCacheImpl($cache);

    $config->setQueryCacheImpl($cache);

    // Proxy configuration
    $config->setProxyDir('/proxies');
    $config->setProxyNamespace('Proxies');

    // Set up logger
    $logger = new EchoSQLLogger;
    //$config->setSQLLogger($logger);

    $config->setAutoGenerateProxyClasses( TRUE );

    // Database connection information
    $connectionOptions = array(
        'driver' => 'pdo_mysql',
        'user' =>     'USER',
        'password' => 'PASS',
        'host' =>     'HOST',
        'dbname' =>   'DB_NAME'
    );

    // Create EntityManager
    $this->em = EntityManager::create($connectionOptions, $config);
  }
}

现在,您可以在包含它之后在您的网站中使用entityManager。

$doctrine = new Doctrine();
$user = new models\User;
$doctrine->em->persist($user);
$doctrine->em->flush();

至少这篇文章可以帮助您了解如何安装和使用学说

答案 1 :(得分:1)

Dotrine 2.5.4

使用命名空间

namespace DB;

use Doctrine\ORM\Tools\Setup;
use Doctrine\ORM\EntityManager;

class Doctrine
{
    public $em;

    public function __construct()
    {
        $paths = array("src/Application/Models/Entity");
        $isDevMode = false;

        // the connection configuration
        $dbParams = array(
            'driver' => 'pdo_mysql',
            'user' =>     'USER',
            'password' => 'PASS',
            'host' =>     'HOST',
            'dbname' =>   'DB_NAME',
        );

        $config = Setup::createAnnotationMetadataConfiguration($paths, $isDevMode, null, null, false);

        $this->em = EntityManager::create($dbParams, $config);

    }
}

在src \ Application \ Models \ Entity

中创建文章实体
namespace Application\Models\Entity;

use Doctrine\ORM\Mapping as ORM;
/**
 * @ORM\Entity
 * @ORM\HasLifecycleCallbacks()
 * @ORM\Table(name="article")
 * @ORM\Entity(repositoryClass="Application\Models\Entity\ArticleRepository")
 */
class Article
{
    /**
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue
     */
    private $id;

    /**
     * @var string $title
     *
     * @ORM\Column(type="text", length=255, nullable=true)
     */
    protected $title;

    /**
     * @var text $body
     *
     * @ORM\Column(type="text", nullable=true)
     */
    protected $body;

    /**
     * @var datetime $createdAt
     *
     * @ORM\Column(type="datetime", name="created_at")
     */
    private $createdAt;

现在从您的班级调用实体经理:

$doctrine = new Doctrine();
$article = $doctrine->em->find('Application\Models\Entity\Article', 1);