我想使用AuthComponent,但我发现我在控制器/组件下没有这个文件。我在哪里可以得到这个php文件?
答案 0 :(得分:0)
AuthComponent是cakePHP核心库的一部分,您将无法在app文件夹下找到它。根据您使用的cakePHP版本,位置可能会有所不同。在cakePHP 2.0中,您可以在app_root / lib / Cake / Controller / Component / AuthComponent.php找到该文件。
您不需要触摸任何核心cakePHP文件。如果你想使用AuthComponent,只需将它添加到AppController,如下所示:
public $components = array('Auth');