Frapi前控制器

时间:2012-07-31 19:38:35

标签: php front-controller frapi

我正在构建一个Frapi扩展程序'对于大学项目。我必须编写一个处理所有请求的Front Controller Action。我试图将自定义路线设置为" / *"但它没有用。

有办法做到这一点吗?

这是一个例子

class CustomAction {

   public function executeAction()

    return "test";
   }

}

当我这样做时我想要那个

curl -X GET -d {} http://api/x.json 
or 
curl -X GET -d {} http://api/y.json
or 
curl -X GET -d {} http://api/xxx/yyy.json
or 
curl -X GET -d {} http://api/kkk/hhh/sss.json

依旧......

然后我会"测试"。

0 个答案:

没有答案