我有一个类名相同的库和模型。如何在我的库类中实例化模型?
/application/libraries/property/request.php
<?php namespace Property;
class Request {
...
/application/models/request.php
<?php
class Request extends Eloquent {
...
需要在请求库中实例化模型。new \Models\Request()
将导致“找不到类‘模型\请求’”。
有没有办法在不改变类名的情况下解决这个问题?