在CakePHP中导入控制器或模型更好吗?

In a CakePHP application, is it better to import Controllers that have access to models or the Models themselves?

You should never import controllers. Controllers are simply "hubs" that control the data flow/input-output, they don't do anything by themselves. You shouldn't have any important, unique logic or data in controllers, and hence should never have a need to import them. Controllers are also not the interface to models or anything like that. In fact, you should decouple your models from the controller as much as possible. If you're interested in the model, import the model.

definitely the models