|
A simple PHP framework designed to work like web.py. WhyBecause people need to create readable and clean PHP apps with less code as possible. Most frameworks are full of code, wephp doesn't get in your way and lets you be productive right away. Example<?php
require('wephp/web.php');
$urls = array(
'/' => 'hello',
);
class hello {
function GET($path) {
echo 'hello world';
}
}
web::run($urls);
?>
|