程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> MayFish PHP的MVC架構的開發框架

MayFish PHP的MVC架構的開發框架

編輯:PHP綜合
框架工作流程:
加載框架文件》加載參數設置對象》進行初始化設置》加載項目設置參數》獲取控制器及控制器方法》執行控制器事件

使用實例為:
復制代碼 代碼如下:
<?php
class DefaultController extends AppController
{
protected $components = array('smarty');
/** 默認事件(方法) */
public function index()
{
$db_test = M('members'); //加載並實例化一個模型
/** 添加數據 */
$data = array(
'title' => '寫入測試',
'body' => '寫入的內容',
);
$result = $db_test->create($data);
if(FALSE != $result)
{
dump("<p><strong>exampel 1:</strong><br />數據寫入成功!</p>");
}
/** 添加多條數據 */
dump("<p><strong>exampel 2:</strong><br />");
$data = array(
array('title'=>'數據1', 'body'=>'內容1'),
array('title'=>'數據2', 'body'=>'內容2'),
array('title'=>'數據3', 'body'=>'內容3'),
array('title'=>'數據4', 'body'=>'內容4'),
array('title'=>'數據5', 'body'=>'內容5'),
);
foreach($data as $item)
{
$result = $db_test->create($item);
if(FALSE != $result)
{
dump("數據<strong>".$item['title']."</strong>寫入成功!<br />");
}
}
dump("</p>");
/** 更新數據 */
$data = array('title'=>'修改數據標題', 'body'=>'修改數據內容');
$result = $db_test->where(array('id'=>3))->update($data);
if(FALSE != $result)
{
dump("<p><strong>exampel 3:</strong><br />數據更新成功!</p>");
}
/** 刪除數據 */
$result = $db_test->where("id=5")->remove();
if(FALSE != $result)
{
dump("<p><strong>exampel 3:</strong><br />數據刪除成功!</p>");
}
/** 執行數據查詢,使用連貫的操作符 */
$db_test->where(array('id'=>12, 'action'=>1))
->order("`id` DESC")
->fields("id,name,action")
->findAll();
$this->shownav();
}
//圖片處理事件
public function image()
{
$file = Configure::read('app_path').'/yagas/K750c_small_06.jpg';
$im = M('SYS', 'image'); //加載並實例化一個系統模型
$im->th_width = 200;
$im->th_height = 150;
$im->thumb($file, null, false);
}
/** 另一個控制器事件 */
public function admin()
{
dump($this);
$this->shownav();
}
/** 另一個控制器事件 */
public function info()
{
$this->shownav();
phpinfo();
}
/** 這是一個內部事件,無法從浏覽器地址進行訪問 */
private function shownav()
{
echo '<a href="/">訪問默認事件</a> | <a href="?a=admin">訪問事件 admin</a> | <a href="?a=info">訪問事件 info</a>';
}
}
?>





     
單個空間多個站點的實現
復制代碼 代碼如下:
<?php
header('Content-type:text/html; charset=utf-8');
include_once('./MayFish/init.php'); //加載MFS框架


$domain = $_SERVER['HTTP_HOST'];


switch($domain) {
case 's1.xinxi169.com.cn':
Configure::write('app_name', 'app');
Configure::write('app_path', dirname(__FILE__).'/app');
break;



case 'www.aike8.cn':
case 'aike8.cn':
Configure::write('app_name', 'aike8');
Configure::write('app_path', dirname(__FILE__).'/aike8');
break;
}


$app = new application();
$app->run();
?>

下載地址 http://www.jb51.net/codes/20169.html
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved