這個視圖文件非常簡單。主要利用的就是ob_start() ,ob_get_content();這個文件位於includes文件夾內
view.php
[php]
<?php
class view{
//視圖類型 default / wap
public static $view_type = null;
public function __construct(){
ob_start();
}
public function finish(){
$content = ob_get_contents();
return $content;
}
public static function set_view_type(){
switch(true){
case stripos($_SERVER['HTTP_USER_AGENT'], 'Windows CE') !== FALSE : self::$view_type = 'wap'; break;
default : self::$view_type = 'default';
}
}
public static function show($location , $param = array()){
if(is_null(self::$view_type)){
self::set_view_type();
}
$view = SIMPLE_PATH . '/view/' . self::$view_type . '/' . $location;
extract($param, EXTR_OVERWRITE);
ob_start();
file_exists($view) ? require $view : exit($view . ' 不存在');
$content = ob_get_contents();
return $content;
}
}
對於OB函數,我們可以簡單地認為,在PHP編譯之後,它不會立刻返回到頁面,而是先放到緩沖區。
上述視圖只是做了一個簡單的實現,如果我們要擴展它,可以完善set_view_type()方法,也可以增加緩存,還可以增加模板的支持。
具體實現我會在以後的章節加上,今天我們試著使用一下這個VIEW。
還是昨天controller文件夾下的index.php 文件
[php]
<?php
class index{
public function demo(){
view::show('index.htm' , array('message' => 'HELLO WORLD'));
}
}
然後再在view文件夾內新建一個default文件夾,再在新建一個index.htm
[html]
<html>
<head>
<title></title>
</head>
<body>
<?php
echo $message;
?>
</body>
</html>
我們運行站點,便可以看到結果,“HELLO WORLD”。
我覺得這個結果,便是每個程序員對新的思想的一種見證。www.2cto.com
如果在這個文件中,你還想插入頭部,或尾部,只要再新建一個head.htm。然後再在index.htm中加入
[html]
<html>
<head>
<title></title>
</head>
<body>
<?php
echo $message;
view::show('head.htm');
?>
</body>
</html>
就可以實現公共部分的加入了。
至此,我們這個小型的視圖類就實現了。
大家可自行去實驗,如果不行,我們再交流。
作者:tomyjohn