<?PHP /** PHP極簡框架 交流: QQ群: 223494678 http://7di.net 用法 http://URL http://URL/hello http://URL/seven.php?w=hello /**/ Header('Content-type: text/html; charset=UTF-8'); $w=isSet($_REQUEST['w']) ? AddsLashes($_REQUEST['w']) : ''; $w=(Trim($w)=='') ? 'index' : $w; IF(!is_callable($w)) { Exit('Error:'.__LINE__.',參數錯誤!'); } $w(); Function hello(){ Echo 'Hello World!'; } Function index(){ Echo '此框架由Seven編寫,來自QQ群:223494678'; }