基本MVC原理
?參考《Pro PHP》
簡單實現了一個mvc框架。
地址http://code.google.com/p/smallframework/ 自動加載的問題<?php
function __autoload($class)
{ if(file_exists($class.".php")) { require_once($class.".php"); }
}
class autoload{ public static function load($class) { if(file_exists("class/".$class.".php")) { require_once("class/".$class.".php"); } }
} spl_autoload_register("autoload::load");
spl_autoload_register("__autoload");
$a = new bb();
$c = new ee();
show_source("c14.php");
?>總結
- 上一篇: jquery的live方法
- 下一篇: 英雄迪加最后一关要多少星币?