English 中文(简体)
理论 2 - PHP 致命错误: 找不到分类理论\ ORM\ 实体仓库
原标题:Doctrine 2 - PHP Fatal error: Class Doctrine\ORM\EntityRepository not found

不是在寻找一个解决办法之后,我决定问这个问题。 其他一些“ askers” 伙伴也在这里这样做过, 尽管我尝试了提供的一些可能的解决办法, 我仍然得到同样的错误。

PHP似乎无法找到实体仓库类,

这里,我的设置:

仓库/用户存储器.php

use DoctrineORMEntityRepository;

class UsersRepository extends DoctrineORMEntityRepository {

    public function getAllUsers(){
        $dql =  SELECT u.id, u.name FROM Users u ;
        $query = $this->getEntityManager()->createQuery($dql);
        return $query->getResult();

    }     

}

实体/用户.php

// This tells Doctrin which table to use from the schema
/**
 * @Entity(repositoryClass="UsersRepository")
 * @Table(name="users")
 **/    

class Users {

    /**
     * @Id @Column(type="integer") @GeneratedValue
     **/        
    protected $id;

    /**
     * @Column(type="string")
     **/        
    protected $name;    

    public function __construct() {

    }

    public function setUserName($name)
    {
        $this->name = $name;
    }

    public function getUserName()
    {
        return $this->name;
    }


}

和在靴子陷阱文件 -/ / 启动陷阱. php - 我添加了

// including all repositories
require_once  repositories/UsersRepository.php ;

当我运行/ GetUsers.php

require_once  bootstrap.php ;

echo  <p>fetching all users</p> ;

$allUsers = $b->entityManager->getRepository( Users )->getAllUsers();

s, 当我在 Apache 错误日志中发现错误时。 如果有人遇到同样的情况, 请帮助 。

谢谢

问题回答

打开您的靴子陷阱. php 文件, 并切换需要的 'nce code< strong> below 。 需要的'once code < strong > below 。 php: 需要的'once pooperstrap_ doctrine. php:

if (!class_exists("DoctrineCommonVersion", false))
{
    require_once ("bootstrap_doctrine.php");
}

require_once "repositories/UsersRepository.php";




相关问题
SVN Repository Structure

I am getting ready to set up an SVN repository, and was wondering if anyone had a good example for a repo structure. I am currently thinking: Development .. Applications .... App1 ...... ...

Is git worth for managing many files bigger than 500MB

I would put under version control a big amount of data, i.e. a directory structure (with depth<=5) with hundreds files with size about 500Mb). The things I need is a system that help me: - to ...

Building core shop framework in Rails. Suitable or not?

I work at an in-house IT department for company running 10 or so only shops of varying complexity. The shops code has been written over the last 8 years, each shop a new branch growing father and ...

Ruby gems repository

I m trying to set a gem repository on one of our local servers. Here are the steps I m running, that I ve followed from several guides. 1) I create the BASEDIR folder /var/www/html/gems 2) sudo cp -...

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Changing username in SVN+SSH URI on the fly in working copy

I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...

热门标签