What's new? | Help | Directory | Sign in
Google
wephp
Web.py philosophy brought to PHP.
  
  
  
  
    
License: New BSD License
Labels: PHP, web.py, framework
Show all Featured Downloads:
wephp-0.1.0.tar.gz
Join project
Project owners:
  lmatteis

A simple PHP framework designed to work like web.py.

Why

Because 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);
?>