phpengine/controllers/main.class.php
2014-03-26 14:18:20 +08:00

15 lines
294 B
PHP

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