本文實例講述了ThinkPHP框架基于PDO方式連接數(shù)據(jù)庫操作。分享給大家供大家參考,具體如下:
一 代碼
1、修改config.php文件
?php
return array(
'DB_TYPE'=> 'pdo',
// 注意DSN的配置針對不同的數(shù)據(jù)庫有所區(qū)別
'DB_DSN'=> 'mysql:host=localhost;dbname=db_database30',
'DB_USER'=>'root',
'DB_PWD'=>'root',
'DB_PREFIX'=>'think_',
// 其他項目配置參數(shù)………
'APP_DEBUG' => true, // 關(guān)閉調(diào)試模式
'SHOW_PAGE_TRACE'=>true,
);
?>
2、創(chuàng)建控制器
?php
header("Content-Type:text/html; charset=utf-8"); //設(shè)置頁面編碼格式
class IndexAction extends Action{
public function index(){
$db = M('User'); // 實例化模型類,參數(shù)數(shù)據(jù)表名稱,不包含前綴
$select = $db->select(); // 查詢數(shù)據(jù)
$this->assign('select',$select); // 模板變量賦值
$this->display(); // 指定模板頁
}
public function type(){
$dba = M('Type'); // 實例化模型類,參數(shù)數(shù)據(jù)表名稱,不包含前綴
$select = $dba->select(); // 查詢數(shù)據(jù)
$this->assign('select',$select); // 模板變量賦值
$this->display('type'); // 指定模板頁
}
}
?>
3、創(chuàng)建入口文件
?php
define('THINK_PATH', '../ThinkPHP'); //定義ThinkPHP框架路徑(相對于入口文件)
define('APP_NAME', 'App'); //定義項目名稱
define('APP_PATH', './App'); //定義項目路徑
require(THINK_PATH."/ThinkPHP.php"); //加載框架入口文件
App::run(); //實例化一個網(wǎng)站應(yīng)用實例
?>
4、創(chuàng)建模板文件
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
title>用戶信息輸出/title>
link href="__ROOT__/Public/Css/style.css" rel="external nofollow" rel="external nofollow" rel="stylesheet" type="text/css" />
/head>
body>
table width="405" border="1" cellpadding="1" cellspacing="1" bgcolor="#99CC33" bordercolor="#FFFFFF">
tr>
td colspan="3" bgcolor="#FFFFFF" class="title" align="center">用戶信息/td>
/tr>
tr class="title">
td bgcolor="#FFFFFF" width="44">ID/td>
td bgcolor="#FFFFFF" width="120">名稱/td>
td bgcolor="#FFFFFF" width="223">地址/td>
/tr>
volist name='select' id='user' >
tr class="content">
td bgcolor="#FFFFFF">nbsp;{$user.id}/td>
td bgcolor="#FFFFFF">nbsp;{$user.user}/td>
td bgcolor="#FFFFFF">nbsp;{$user.address}/td>
/tr>
/volist>
/table>
/body>
/html>
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
title>類別輸出/title>
link href="__ROOT__/Public/Css/style.css" rel="external nofollow" rel="external nofollow" rel="stylesheet" type="text/css" />
/head>
body>
table width="405" border="1" cellpadding="1" cellspacing="1" bgcolor="#99CC33" bordercolor="#FFFFFF">
tr>
td colspan="3" bgcolor="#FFFFFF" class="title" align="center">類別輸出/td>
/tr>
tr class="title">
td bgcolor="#FFFFFF" width="44">ID/td>
td bgcolor="#FFFFFF" width="120">類別名稱/td>
td bgcolor="#FFFFFF" width="223">添加時間/td>
/tr>
volist name='select' id='type' >
tr class="content">
td bgcolor="#FFFFFF">nbsp;{$type.id}/td>
td bgcolor="#FFFFFF">nbsp;{$type.typename}/td>
td bgcolor="#FFFFFF">nbsp;{$type.dates}/td>
/tr>
/volist>
/table>
/body>
/html>
二 運(yùn)行結(jié)果
更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門教程》及《PHP模板技術(shù)總結(jié)》。
希望本文所述對大家基于ThinkPHP框架的PHP程序設(shè)計有所幫助。
您可能感興趣的文章:- PHP5中使用PDO連接數(shù)據(jù)庫的方法
- PHP中PDO連接數(shù)據(jù)庫中各種DNS設(shè)置方法小結(jié)
- PHP實現(xiàn)的pdo連接數(shù)據(jù)庫并插入數(shù)據(jù)功能簡單示例
- PHP利用pdo_odbc實現(xiàn)連接數(shù)據(jù)庫示例【基于ThinkPHP5.1搭建的項目】
- php中在PDO中使用事務(wù)(Transaction)
- php下pdo的mysql事務(wù)處理用法實例
- php使用PDO事務(wù)配合表格讀取大量數(shù)據(jù)插入操作實現(xiàn)方法
- PHP基于PDO實現(xiàn)的SQLite操作類【包含增刪改查及事務(wù)等操作】
- php PDO實現(xiàn)的事務(wù)回滾示例
- php的PDO事務(wù)處理機(jī)制實例分析
- php pdo連接數(shù)據(jù)庫操作示例