黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

CakePHP 使用數(shù)據(jù)庫

cakephp 使用數(shù)據(jù)庫

 

在 cakephp 中使用數(shù)據(jù)庫非常簡單。我們將在本章中了解 crud(創(chuàng)建、讀取、更新、刪除)操作。

此外,我們還需要在 config/app_local.php 文件中配置我們的數(shù)據(jù)庫。

'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',
   ],
],

默認(rèn)連接具有以下詳細(xì)信息:

'host' => 'localhost',
   'username' => 'my_app',
   'password' => 'secret',
   'database' => 'my_app',

您可以根據(jù)自己的選擇更改詳細(xì)信息,即主機(jī)、用戶名、密碼和數(shù)據(jù)庫。

一旦完成,請(qǐng)確保它在數(shù)據(jù)源對(duì)象的 config/app_local.php 中更新。

現(xiàn)在,我們將繼續(xù)上述細(xì)節(jié),轉(zhuǎn)到您的 phpmyadmin 或 mysql 數(shù)據(jù)庫并創(chuàng)建用戶 my_app,如下所示:

我的應(yīng)用

授予必要的權(quán)限并保存?,F(xiàn)在,我們根據(jù) app_local.php 中提到的配置獲得了數(shù)據(jù)庫詳細(xì)信息。當(dāng)你查看 cakephp 主頁時(shí),這個(gè)是你應(yīng)該得到的:

應(yīng)用本地

現(xiàn)在,我們將在數(shù)據(jù)庫中創(chuàng)建以下用戶表。

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

 

插入記錄

要在數(shù)據(jù)庫中插入一條記錄,我們首先需要使用 tableregistry 類來獲取一個(gè)表。我們可以使用 get() 方法從注冊表中獲取實(shí)例。 get() 方法將數(shù)據(jù)庫表的名稱作為參數(shù)。

這個(gè)新實(shí)例用于創(chuàng)建新實(shí)體。使用新實(shí)體的實(shí)例設(shè)置必要的值。我們現(xiàn)在必須使用 tableregistry 類的實(shí)例調(diào)用 save() 方法,這將在數(shù)據(jù)庫中插入新記錄。

 

示例

config/routes.php 文件中進(jìn)行更改,如以下程序所示。

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 中創(chuàng)建一個(gè) userscontroller.php 文件。 將以下代碼復(fù)制到控制器文件中。

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 創(chuàng)建一個(gè) users 目錄,然后在該目錄下創(chuàng)建一個(gè)名為add.php 的 view 文件。將以下代碼復(fù)制到該文件中。

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 執(zhí)行上述示例。 http://localhost/cakephp4/users/add

 

輸出

執(zhí)行后,您將收到以下輸出。

數(shù)據(jù)將保存在用戶表中,如下所示:

下一節(jié):cakephp 查看記錄

cakephp 教程

相關(guān)文章