PHP code example of geligaoli / singlephp-ex
1. Go to this page and download the library: Download geligaoli/singlephp-ex library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
geligaoli / singlephp-ex example snippets
namespace App;
define('APP_DEBUG', TRUE);
define('APP_FULL_PATH', dirname(__DIR__)."/App");
nfig = array(
'APP_PATH' => 'App',
'APP_NAMESPACE' => __NAMESPACE__, # 业务代码的主命名空间 namespace
'CTL_NAMESPACE' => 'Controller', # 控制器代码的命名空间 namespace
);
SinglePHP::getInstance($config)->run(); //跑起来啦
默认控制器:App/Controller/IndexController.php
namespace App\Controller;
use SinglePHP\BaseController;
class IndexController extends BaseController { //控制器必须继承Controller类或其子类
public function IndexAction(){ //默认Action
$this->assign('content', 'Hello World'); //给模板变量赋值
$this->display(); //渲染吧
}
}
模板文件:App/View/Index/Index.php
echo $content;