真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

實(shí)現(xiàn)一個簡單php框架的示例

小編給大家分享一下實(shí)現(xiàn)一個簡單php框架的示例,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

為金水等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及金水網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都做網(wǎng)站、網(wǎng)站建設(shè)、金水網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

首先看一下現(xiàn)有的文件目錄

實(shí)現(xiàn)一個簡單php框架的示例

DOCUMENT_ROOR 為 /home/www目錄

然后看一下入口文件的內(nèi)容

1) {
		$controller = $params[0];
		$action  = $params[1];
		unset($params[0]);
		unset($params[1]);
	}else if($params_count==1) {
		$controller = $params[0];
		$action = 'index';
		unset($params[0]);
	}

	$filename = strtolower($controller).'.php';
	$controller_path = $_SERVER['DOCUMENT_ROOT'].'/application/controllers/';

	if(!file_exists($controller_path.$filename)) {
		throw new Exception('controller '.$filename.' is not exists!');
		return;
	}
	include($controller_path.$filename);

	$classname = ucfirst($controller);
	if(!class_exists($classname)) {
		throw new Excpetion('class '.$classname.' is not exists!');
	}
	$reflecObj = new ReflectionClass($classname);
	if(!$reflecObj->hasMethod($action)){
		throw new Exception('method '.$action.' is not exists!');
	}

	$currentObj = new $classname();
	echo "classname=$classname,action=$action,params=".json_encode($params)."
"; call_user_func_array([$currentObj,$action],$params); return; ?>

然后創(chuàng)建一個簡單的控制器 user.php,放到applicaiton/controllers/目錄下,具體內(nèi)容如下:

最后測試一個正確的控制器跳轉(zhuǎn)和錯誤的控制器跳轉(zhuǎn)

首先測試一下正確的流程: http://192.168.1.99/user/index/xiaoming

輸出內(nèi)容:

classname=User,action=index,params={"2":"xiaoming"}
 hello,xiaoming,lucky,you are arrive here!

再測試一下不存在的控制器,http://192.168.1.99/account/index/xiaoming

Fatal error: Uncaught exception 'Exception' with message 'controller acount.php is not exists!' in /home/www/webroot/index.php:25Stack trace:#0 {main} thrown in 
/home/www/webroot/index.php on line 25

看完了這篇文章,相信你對“實(shí)現(xiàn)一個簡單php框架的示例”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)頁名稱:實(shí)現(xiàn)一個簡單php框架的示例
當(dāng)前路徑:http://weahome.cn/article/gddjgc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部