为什么控制器名称称为资源?

Why are controller names are called resource?

我正在阅读 Phalcon 教程,控制器名称称为资源,即公司和发票是控制器。当他们称某物为资源时,他们是什么意思? IE。什么是资源?维基百科或 Google 没有帮助。

Controller names are resources and their actions are accesses for the resources:

 <?php
 //Private area resources (backend)
 $privateResources = array(
 ’companies’ => array(’index’, ’search’, ’new’, ’edit’, ’save’,   
 ’create’,  ’delete’),
 ’invoices’ => array(’index’, ’profile’)
 );
 foreach ($privateResources as $resource => $actions) {
 $acl->addResource(new Phalcon\Acl\Resource($resource), $actions);

您指的是创建 ACL。对于 Phalcon,ACL 列表中的所有项目都定义为角色(用户权限)和资源(无论他们可能看到什么)

我在 PHP 中找到了 resources 的意思,它不是一个任意名称。

As resource variables hold special handlers to opened files, database connections, image canvas areas and the like, converting to a resource makes no sense.

这就是我记得老师讲的。

PHP: Resources