cakephp 使用數據庫
在 cakephp 中使用數據庫非常簡單。我們將在本章中了解 crud(創建、讀取、更新、刪除)操作。
此外,我們還需要在 config/app_local.php 文件中配置我們的數據庫。
'datasources' => [ 'default' => [ 'host' => 'localhost', 'username' => 'my_app', 'password' => 'secret', 'database' => 'my_app', 'url' => env('database_url', null), ], /* * the test connection is used during the test suite. */ 'test' => [ 'host' => 'localhost', //'port' => 'non_standard_port_number', 'username' => 'my_app', 'password' => 'secret', 'database' => 'test_myapp', //'schema' => 'myapp', ], ],
默認連接具有以下詳細信息:
'host' => 'localhost', 'username' => 'my_app', 'password' => 'secret', 'database' => 'my_app',
您可以根據自己的選擇更改詳細信息,即主機、用戶名、密碼和數據庫。
一旦完成,請確保它在數據源對象的 config/app_local.php 中更新。
現在,我們將繼續上述細節,轉到您的 phpmyadmin 或 mysql 數據庫并創建用戶 my_app,如下所示:

授予必要的權限并保存。現在,我們根據 app_local.php 中提到的配置獲得了數據庫詳細信息。當你查看 cakephp 主頁時,這個是你應該得到的:

現在,我們將在數據庫中創建以下用戶表。
create table `users` ( `id` int(11) not null auto_increment, `username` varchar(50) not null, `password` varchar(255) not null, primary key (`id`) ) engine=innodb auto_increment=7 default charset=latin1
插入記錄
要在數據庫中插入一條記錄,我們首先需要使用 tableregistry 類來獲取一個表。我們可以使用 get() 方法從注冊表中獲取實例。 get() 方法將數據庫表的名稱作為參數。
這個新實例用于創建新實體。使用新實體的實例設置必要的值。我們現在必須使用 tableregistry 類的實例調用 save() 方法,這將在數據庫中插入新記錄。
示例
在 config/routes.php 文件中進行更改,如以下程序所示。
config/routes.php
use cake\http\middleware\csrfprotectionmiddleware; use cake\routing\route\dashedroute; use cake\routing\routebuilder; $routes--->setrouteclass(dashedroute::class); $routes->scope('/', function (routebuilder $builder) { $builder->registermiddleware('csrf', new csrfprotectionmiddleware([ 'httponly' => true, ])); $builder->applymiddleware('csrf'); //$builder->connect('/pages',['controller'=>'pages','action'=>'display', 'home']); $builder->connect('/users/add', ['controller' => 'users', 'action' => 'add']); $builder->fallbacks(); });
在 src/controller/userscontroller.php 中創建一個 userscontroller.php 文件。 將以下代碼復制到控制器文件中。
src/controller/userscontroller.php
namespace app\controller; use app\controller\appcontroller; use cake\orm\tableregistry; use cake\datasource\connectionmanager; use cake\auth\defaultpasswordhasher; class userscontroller extends appcontroller{ public function add(){ if($this--->request->is('post')){ $username = $this->request->getdata('username'); $hashpswdobj = new defaultpasswordhasher; $password = $hashpswdobj->hash($this->request->getdata('password')); $users_table = tableregistry::get('users'); $users = $users_table->newentity($this->request->getdata()); $users->username = $username; $users->password = $password; $this->set('users', $users); if($users_table->save($users)) echo "user is added."; } } } ?>
在 src/template 創建一個 users 目錄,然后在該目錄下創建一個名為add.php 的 view 文件。將以下代碼復制到該文件中。
src/template/users/add.php
echo $this--->form->create(null,array('url'=>'/users/add')); echo $this->form->control('username'); echo $this->form->control('password'); echo $this->form->button('submit'); echo $this->form->end(); ?>
通過訪問以下 url 執行上述示例。 http://localhost/cakephp4/users/add
輸出
執行后,您將收到以下輸出。

數據將保存在用戶表中,如下所示:
