最简MVC
2017-02-04 本文已影响14人
onefishum
<?php
class demo
{
public function test()
{
echo 'mvc program!';
}
public function test2()
{
echo 'this is test2!';
}
}
call_user_func_array(array($_GET['c'], $_GET['m']),array());