Exemplo n.º 1
0
Arquivo: index.php Projeto: hiroy/lune
function myapp_foo(Lune_Request $req, Lune_Response $res)
{
    $res->contentTypeHtml('UTF-8');
    $res->message = 'Hello ' . $req->name;
    $res->render();
    // equals to $res->render('myapp_foo.php');
}
Exemplo n.º 2
0
Arquivo: Lune.php Projeto: hiroy/lune
 function h($str)
 {
     return Lune_Response::escapeHtml($str);
 }