微型 PHP5 框架 Slim Framework
- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://www.slimframework.com/
- 软件文档: http://www.slimframework.com/learn
软件介绍
这是一个简单的 PHP5 框架用来创建 RESTful 的 Web 应用,示例代码:
<?php
require 'Slim/Slim.php';
$app = new Slim();
$app->get('/hello/:name', function ($name) {
echo "Hello, $name!";
});
$app->run();
?>
Release It!
Michael T. Nygard / Pragmatic Bookshelf / 2007-03-30 / USD 34.95
“Feature complete” is not the same as “production ready.” Whether it’s in Java, .NET, or Ruby on Rails, getting your application ready to ship is only half the battle. Did you design your system to......一起来看看 《Release It!》 这本书的介绍吧!
