Home >php教程 >php手册 >PHP初体验

PHP初体验

WBOY
WBOYOriginal
2016-06-17 08:21:50780browse

1. 相关内容介绍

 1>互联网开发

  • 互联网:传统互联网、移动互联网

  • 互联网开发:前端开发(前台)、后台开发(后端、服务端)

  • 前端开发:视觉展示(用户界面)、用户交互、采集输入信息

  • 后台开发:管理和处理数据、开发对客户端的接口、控制输出

 2> 客户服务器模式(C/S)

  • 客户端:主动启动通信(发起请求),例如:浏览器、移动客户端等

  • 服务器:被动等待通信(响应请求),例如:web服务器、FTP服务器、邮件服务器等

 3> Web Server开发

  Web Server(服务器):在网络环境下,为发起请求的客户端提供响应服务,主要处理HTTP请求。

PHP初体验

Statement:
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
Previous article:如何解决PHP中文乱码问题Next article:echo和print语句