first commit

This commit is contained in:
2014-03-26 14:18:20 +08:00
commit 41681f1f18
31 changed files with 4496 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
class Main extends BaseController{
public function enter(){
echo '<br/><br/><br/><br/>';
echo 'isAjax:'.isAjax();
echo Url::getMethod();
echo Url::$url;
$this->render();
}
public function test(){
print_r( $_REQUEST );
echo 'isAjax:'.isAjax();
return;
}
}