Ham是一款轻量级的路由框架,利用缓存来提升速度。把任何I/O相关的东西缓存进XCache/APC。要求PHP5.3+和XCache或者APC。
示例代码:
require '../ham/ham.php';$app = ew Ham('example');$app->cofig_from_file('settigs.php');$app->route('/pork', fuctio($app) { retur "Delicious pork.";});$hello = fuctio($app, $ame='world') { retur $app->reder('hello.html', array( 'ame' => $ame ));};$app->route('/hello/<strig>', $hello);$app->route('/', $hello);$app->ru();
评论