Files
php-rack/app/app.php
2010-01-12 21:05:17 +02:00

16 lines
373 B
PHP

<?php
class App {
function call (&$env) {
if ( $env["PATH_INFO"] == "/" ) {
return array(200, array("Content-Type" => "text/html"), array("Welcome Home"));
} elseif ( preg_match("/^\/about\/?/i", $env["PATH_INFO"]) ) {
return array(200, array("Content-Type" => "text/html"), array("Rack-style middleware is cool."));
}
return Rack::not_found();
}
}
?>