我使用的是蛋糕PHP3.4。我在数据库中有客人和国家表。我想作为来宾和参与者访问这些表对象。
我想这样使用:
$this->Guests->find();
而不是
$this->Guest->find()
您必须创建一个模型GuestTable。src/Model/Table中的php/
namespace App\Model\Table;
use Cake\ORM\Table;
class GuestsTable extends Table
{
public function initialize(array $config)
{
$this->setTable('guest'); // your table name
// Prior to 3.4.0
// $this->table('guest');
}
}
乡村也一样