RESTful API框架 Rester
- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://git.oschina.net/overtrue/rester
- 软件文档: http://git.oschina.net/overtrue/rester
软件介绍
Rester是一个基于Slim + Laravel Eloquent的RESTful API框架。它集合了Slim的简洁易用+Laravel Eloquent数据库模型的强大+Laravel Validation强大简洁的表单验证,让你编写API得心应手!
特点:
基于Slim作为web核心,强大的路由与清晰的项目结构。
多环境支持,轻松区别线上环境与开发环境,0切换成本。
强大的ORM框架Eloquent
强大的数据验证类Validation
控制器:
<?php
/**
* 演示控制器
*/
class HomeController extends Controller
{
public function index() {
return $this->json(['app' => 'Rester', 'message' => 'Hello world!']);
}
//...
}
Algorithms in C (Computer Science Series)
Robert Sedgewick / Addison-Wesley Professional / 1990-01-11 / USD 59.99
This new version of the best-selling book, Algorithms, SecondEdition, provides a comprehensive collection of algorithmsimplemented in C. A variety of algorithms are described in eachofthe following ar......一起来看看 《Algorithms in C (Computer Science Series)》 这本书的介绍吧!
