利用PHP语言开发手机app后台服务器的框架是什么?或者说开发流程是怎么样的?
回复内容:
如果不需要即时通讯的话,可以考虑直接走http协议,用nginx+php-fpm搭建一个webserver就好了,php框架可以采用thinkphp、yii等等,客户端需要与服务器通讯的时候向服务端get/post一个请求就好。如果需要即时通讯,也就是需要手机客户端与服务端保持TCP长连接,服务端需要向客户端推送数据的时候可以随时通过这个长连接发送数据给客户端,这样便能做到客户端与服务端及时通讯甚至客户端与客户端及时通讯。做到这需要PHP能维持很多客户端连接,并且需要多进程支持,支持自己的通讯协议。这样的应用传统的nginx+php-fpm + 传统的php框架是做不到的。如果是长连接即时通讯类的服务器框架推荐一看下workerman,它是就是一个php的socket服务器框架,非常适合做手机后台服务器框架。 最近正在做一个手机APP的服务端API开发,虽然是基于Ruby on Rails的,做的也不太专业,不过大致相通,希望能够给你一些启发。
首先,如果是比较简单的手机APP,例如新闻客户端这样的不会涉及到长连接的服务,那么可以考虑直接使用http协议。因为该协议几乎被所有可以上网的设备支持,手机客户端那边也有大量相关的库可以调用,省掉不少麻烦。
这么说来其实用php基本也就等于用http协议了吧= =,php对其他协议的支持还真不怎么样。
确定完这个之后,就需要统一一下两个端之间沟通的标准了。简单的说就是统一一下语言,总不能一个人讲英语一个讲日语然后两个都傻傻分不清楚吧......
解决这个问题最简单的当然就是把数据用一个奇怪的符号分隔开啦~~~~比如说,现在客户端需要从服务端获取新闻数据,那么按照最直接的做法,可以先写一个php文件,路径就设定成/news.php好了,然后你设定了这样的一个规矩:用^^^这样的连续三个^表示分隔符,然后分割出来的第一个字符串就是标题,第二个是作者,第三个是内容……巴拉巴拉巴拉
给个示范:
美政府秋后算账 罚华尔街大银行1100亿美元^^^新浪财经要闻^^^新浪财经讯 北京8月10日晚间消息 美国的大银行为和解与2008年金融危机有关的案件支付的罚款已达1100亿美元,这些案件涉及抵押贷款、止赎权和一些在金融危机最严重看起来不错是吧?反正快速地解决问题可以愉快的跟别人嘚瑟去了,丑点就丑点吧
不错你个头(╯‵□′)╯︵┻━┻
当你突然发现你不需要作者这个信息了该怎么办?突然要增加一个缩略图怎么办?
傻了吧?只能一行行改代码了吧~~然后此时你的app又已经上线了,如果把服务端给改了的话那么就全都乱套了!!!所以你就只能设定成不显示这个信息假装它不存在.....
1个月后,终于因为频繁地需求变更你的代码越来越臃肿,最后不堪重负的你把这一坨屎全部扔掉了.....
一身轻松(≧▽≦)/ 等等,这几个月我到底做了什么!!!!(⊙o⊙)
所以要一开始就确定一个统一的标准,而且必须是一个可以方便拓展的标准。
这时,你的面前出现了这样两个东西:XML和JSON
其实这俩货都很萌的.....都可以很好地表示数据,不过当你看到xml那一坨坨屎一样的标签对后你立刻就抛弃了它。嗯,选择json才是王道嘛~~~(咳咳,其实主要是因为json在同等条件下文字量会比较小,具体的你看过他们的语法后就能明白了。在手机这种流量贵的要死有慢的不行的地方,自然是数据越小越好啦~)
而且json在php中的生成简直不能更加方便了,直接对你放置数据的变量来一个json_encode,你的变量就会变成json格式躺在你面前了....手机客户端那边不是很清楚,不过显然也是可以很方便地转换过去的。
就这样,你现在的新闻数据变成这样了:
<span class="p">{</span> <span class="nt">"id"</span><span class="p">:</span><span class="mi">107314</span><span class="p">,</span> <span class="nt">"title"</span><span class="p">:</span><span class="s2">"粤解说:富力体能储备有问题 卢琳态度值得赞扬"</span><span class="p">,</span> <span class="nt">"summary"</span><span class="p">:</span><span class="s2">" 北京时间8月10日消息,2014赛季中超联赛第19轮的比赛继续展开争夺,杭州绿城队在主场1比3负于广州富力[微博]队。广东体育解说陈凯冬和前著名足球裁判李志中为广大球迷带来精彩的解说。两名解说对卢琳整场比赛表现出来积极的态度极其称赞。 第26分钟,杭州绿城快速反击...."</span><span class="p">,</span> <span class="nt">"published_at"</span><span class="p">:</span><span class="s2">"2014-08-10T13:52:01.000Z"</span><span class="p">,</span> <span class="nt">"cate"</span><span class="p">:{</span> <span class="nt">"id"</span><span class="p">:</span><span class="mi">4</span><span class="p">,</span> <span class="nt">"name"</span><span class="p">:</span><span class="s2">"新浪体育要闻"</span> <span class="p">},</span> <span class="nt">"url"</span><span class="p">:</span><span class="s2">"http://comi/news/107314"</span> <span class="p">}</span>
API描述方式有很多种:REST、SOAP等等均可。推荐REST 有没有用过ECSHOP作为 IOS APP的服务端啊?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building
