微型 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();
?>
Computational Advertising
by Kushal Dave、Vasudeva Varma / Now Publishers Inc / 2014
Computational Advertising (CA), popularly known as online advertising or Web advertising, refers to finding the most relevant ads matching a particular context on the Web. The context depends on the t......一起来看看 《Computational Advertising》 这本书的介绍吧!
