您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關怎么在php中使用kohana框架連接數據庫,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
php,一個嵌套的縮寫名稱,是英文超級文本預處理語言(PHP:Hypertext Preprocessor)的縮寫。PHP 是一種 HTML 內嵌式的語言,PHP與微軟的ASP頗有幾分相似,都是一種在服務器端執行的嵌入HTML文檔的腳本語言,語言的風格有類似于C語言,現在被很多的網站編程人員廣泛的運用。
1、添加database支持。在kohana\application\bootstrap.php下找到如下段
Kohana::modules(array( // 'auth' => MODPATH.'auth', // Basic authentication // 'cache' => MODPATH.'cache', // Caching with multiple backends // 'codebench' => MODPATH.'codebench', // Benchmarking tool // 'database' => MODPATH.'database', // Database access // 'image' => MODPATH.'image', // Image manipulation // 'orm' => MODPATH.'orm', // Object Relationship Mapping // 'unittest' => MODPATH.'unittest', // Unit testing // 'userguide' => MODPATH.'userguide', // User guide and API documentation ));
去掉database前面的注釋。
2、在kohana\application\config下添加database.conf配置文件,內容如下
<?php defined('SYSPATH') or die('No direct access allowed.'); return array ( 'default' => array ( 'type' => 'mysql', 'connection' => array( 'hostname' => 'localhost', 'username' => 'root', 'password' => 'password', 'persistent' => FALSE, 'database' => 'kohanademo', ), 'table_prefix' => '', 'charset' => 'utf8', 'profiling' => TRUE, ), ); ?>
修改對應的數據庫名和密碼就好。
3、在代碼中添加數據庫查詢段,kohana\application\classes\controller\user\user.php內容修改如下
<?php defined('SYSPATH') or die('No direct script access.'); class Controller_User_User extends Controller { public function action_index() { $username = Session::instance()->get('username'); $this->response->body('logined:'.$username); } public function action_login() { if($this->request->post()) { $username = $this->request->post('username'); $password = $this->request->post('password'); $query = DB::query(Database::SELECT, "SELECT username FROM user WHERE username=:username AND password=:password"); $query->param(':username', $username); $query->param(':password', $password); $user = $query->execute()->current(); if(count($user) > 0) { Session::instance()->set('username',$username); } $this->request->redirect('/user/user/index'); } } } ?>
關于怎么在php中使用kohana框架連接數據庫就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。