我在使用codeigniter 2.1.0自动加载doctrine 2时出现问题, 我正在学习本教程 http://www.phpandstuff.com/articles/codeigniter-doctrine-from-scratch-day-1-install-and-setup 我应该打开autoload.php文件并加载这样的学说:
$autoload['plugin'] = array('doctrine');
但问题是没有$ autoload ['plugin'] = array();在我的autoload.php中
那么如何加载学说?
答案 0 :(得分:2)
那个phpandstuff文章太旧了,对于doctrine1来说。用于CI2和Doctrine2 https://github.com/rubensarrio/codeigniter-hmvc-doctrine
您需要设置库类并设置doctrine类加载器。
答案 1 :(得分:1)
如果我从CodeIgniter
版本2.0开始就已经删除了该插件,并且添加了几乎相同的帮助类。
我很瘦,你应该改变plugin
中的helper
:
yourplugin_pi.php
=> yournewhelper_helper.php
然后您可以将其添加到帮助程序部分的自动加载文件中:
http://codeigniter.com/user_guide/installation/upgrade_200.html