推进自动加载标准

时间:2016-11-01 15:39:35

标签: php propel autoload

我正在尝试让作曲家自动加载也加载Propel运行时类,例如Criteria,但是我收到错误

Fatal error: Uncaught Error: Class 'Criteria' not found

直到我使用

use Propel\Runtime\ActiveQuery\Criteria;

我的代码是:

require_once 'vendor/autoload.php';
require_once 'config/config.php';

$authors = AuthorQuery::create()
->filterByAuthorType(1,Criteria::NOT_EQUAL)
->distinct()
->find()
->toArray();

0 个答案:

没有答案