Home > Backend Development > PHP Tutorial > api - php写restful接口?

api - php写restful接口?

WBOY
Release: 2016-06-06 20:12:24
Original
1262 people have browsed it

想用php实现一个简单restfull api
发现php没有nodejs那样容易控制路由规则,路由是由apache给控制的

能给点建议不,怎么控制路由实现restful api ?

回复内容:

想用php实现一个简单restfull api
发现php没有nodejs那样容易控制路由规则,路由是由apache给控制的

能给点建议不,怎么控制路由实现restful api ?

http://frapi.github.io/developing/creati... 直接用后台生成api接口

没有规定路由必须交给Apache呀!你可以将所有请求集合到统一入口,再解析请求的URI和Method,调度到对应的接口Api程序,一样能实现Restful接口。很多PHP框架也是专门针对Restful开发的,比如Slim。而且大部分PHP框架也都支持Restful形式的路由,具体实现看看他们的代码就知道了。

Yii / Laravel 框架

可以使用这样的重定向规则,将找不到的文件转发到index.php

<code>Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</code>
Copy after login

然后你就可以自己定义Routes了

试试laravel你就会发现和express很相似的,推荐用laravel

你需要的是一个php路由控制器,slim确实很好。

所有框架都是可以自由定制路由的,比如ci和thinkphp这种只是默认把路由和对应的控制器进行了绑定。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template