13行代碼開發出来的PHP框架

<?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';

}

 

你可能感兴趣的:(php框架)