class AjaxController
{
publc function actionSave()
{
return .....;
}
}
$controller = new AjaxController();
if (method_exists($controller, "action".ucfirst($_POST['method'])))
{
return $controller->"action".ucfirst($_POST['method'])();
}