Doctrine 2 を CodeIgniter と統合するためのチュートリアルを探している場合、この質問と他の回答は古くなっています (CI 2 の場合)。これは、私が作成した CI 3 の新しいチュートリアルであり、動作していることを確認しました。
CodeIgniter 3 に Doctrine 2 をインストールする方法
ここで繰り返します。
ドクトリンをインストールする
Doctrine 2 ORM のドキュメント - インストールと構成
Doctrine はComposerでインストールできます。composer.json ファイルで次の要件を定義します。
{
"require": {
"doctrine/orm": "*"
}
}
次に、コマンド ラインから composer install を呼び出します。
CodeIgniter との統合
Doctrine 2 ORM のドキュメント - CodeIgniter との統合
手順は次のとおりです。Doctrine.php という名前の php ファイルを system/application/libraries フォルダーに追加します。これは、D2 エンティティ マネージャーのラッパー/ブートストラップになります。Doctrine フォルダー (Common、DBAL、および ORM を含むフォルダー) を third_party フォルダー内に配置します。必要に応じて、config/autoload.php ファイルを開き、Doctrine ライブラリを自動ロードします。$autoload[‘libraries’] = array(‘doctrine’);
Doctrine CodeIgniter ライブラリの作成
さて、Doctrine.php ファイルは次のようになります。ニーズに合わせてカスタマイズしてください。
<?php
/**
* Doctrine 2.4 bootstrap
*
*/
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()
{
// load database configuration from CodeIgniter
require_once APPPATH.'config/database.php';
// include Doctrine's ClassLoader class
require_once APPPATH.'third_party/Doctrine/Common/ClassLoader.php';
// load the Doctrine classes
$doctrineClassLoader = new ClassLoader('Doctrine', APPPATH.'third_party');
$doctrineClassLoader->register();
// load the entities
$entityClassLoader = new ClassLoader('Entities', APPPATH.'models');
$entityClassLoader->register();
// load the proxy entities
$proxiesClassLoader = new ClassLoader('Proxies', APPPATH.'models/proxies');
$proxiesClassLoader->register();
// load Symfony2 classes
// this is necessary for YAML mapping files and for Command Line Interface (cli-doctrine.php)
$symfonyClassLoader = new ClassLoader('Symfony', APPPATH.'third_party/Doctrine');
$symfonyClassLoader->register();
// Set up the configuration
$config = new Configuration;
// Set up caches
if(ENVIRONMENT == 'development') // set environment in index.php
// set up simple array caching for development mode
$cache = new \Doctrine\Common\Cache\ArrayCache;
else
// set up caching with APC for production mode
$cache = new \Doctrine\Common\Cache\ApcCache;
$config->setMetadataCacheImpl($cache);
$config->setQueryCacheImpl($cache);
// set up annotation driver
$driver = new \Doctrine\ORM\Mapping\Driver\PHPDriver(APPPATH.'models/Mappings');
$config->setMetadataDriverImpl($driver);
// Proxy configuration
$config->setProxyDir(APPPATH.'/models/Proxies');
$config->setProxyNamespace('Proxies');
// Set up logger
$logger = new EchoSQLLogger;
$config->setSQLLogger($logger);
$config->setAutoGenerateProxyClasses( TRUE ); // only for development
// Database connection information
$connectionOptions = array(
'driver' => 'pdo_mysql',
'user' => $db['default']['username'],
'password' => $db['default']['password'],
'host' => $db['default']['hostname'],
'dbname' => $db['default']['database']
);
// Create EntityManager, and store it for use in our CodeIgniter controllers
$this->em = EntityManager::create($connectionOptions, $config);
}
}
コマンド ライン ツールの設定
Doctrine には、開発中に非常に役立つ多くのコマンドライン ツールが同梱されています。
これらの行が Doctrine.php ファイルに存在するかどうかを確認して、コマンド ライン ツール (および YAML マッピング ファイル) を使用するための Symfony クラスをロードします。
$symfonyClassLoader = new ClassLoader('Symfony', APPPATH.'third_party/Doctrine');
$symfonyClassLoader->register();
以下の内容でアプリケーション ディレクトリに cli-doctrine.php ファイルを作成してタスクを利用するには、アプリケーションの EntityManager をコンソール ツールに登録する必要があります。
<?php
/**
* Doctrine CLI bootstrap for CodeIgniter
*
*/
define('APPPATH', dirname(__FILE__) . '/');
define('BASEPATH', APPPATH . '/../system/');
define('ENVIRONMENT', 'development');
require APPPATH.'libraries/Doctrine.php';
$doctrine = new Doctrine;
$em = $doctrine->em;
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array(
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)
));
\Doctrine\ORM\Tools\Console\ConsoleRunner::run($helperSet);
?>
PHP コマンドラインからこのスクリプトを実行すると、使用可能なコマンドのリストが表示されます。
php cli-doctrine.php
データベースからマッピング クラスを生成します。
php cli-doctrine.php orm:convert-mapping --from-database annotation models/Entities
このエラーが発生した場合:
Fatal error: Call to undefined function Doctrine\Common\Cache\apc_fetch()
PHP の APC 拡張機能をインストールします。
sudo apt-get install php-apc
sudo /etc/init.d/apache2 restart
プロダクション モードでは、APC のような実際のキャッシュ システムを使用し、 を取り除き、Doctrine.php でEchoSqlLogger
オフにする必要があります。autoGenerateProxyClasses