Skip to content

kirsantov/keyzen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

keyzen

PHP Lite Framework

Начало работы

The most basic example is including the routing module and defining a few endpoints and providing a callback function that executes when someone requests that page.

KeyZ\App::init('config/config.php');
KeyZ\App::run();

function home() {
    echo 'You are at the home page';
}

function contactUs() {
    echo 'Send us an email at <a href="mailto:foo@bar.com">foo@bar.com</a>';
}

About

A PHP light weight MVC framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages