Blogger Information
Blog 19
fans 1
comment 0
visits 13181
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php个人基本理解--php培训第九期线上班
涤尘
Original
606 people have browsed it

基本环境配置完成


php理解

PHP 是 “PHP Hypertext Preprocessor” 的首字母缩略词,PHP是通用的,免费开源的,运行在服务器端的脚本编程语言

通用:指跨平台,如:Windows、Linux、MacOS

免费:意味着你不必为PHP花一分钱,哪怕用在商业项目中

开源:意味着你可以轻松获取全部源代码,并进行定制或扩展

服务器端:意味着你必须将它安装在服务器环境下才可以使用

PHP 文件能够包含文本、HTML、CSS 以及 PHP 代码

PHP 代码在服务器上执行,而结果以纯文本返回浏览器

PHP 文件的后缀是 “.php

语言标记:

开始标记 <?php 和 结束标记 ?> 中间写 PHP 代码,echo 输出,重要是是语句结束时候,要写“;”结束符!不然会出问题的!

注释

  1. # php中的单行注释
  2. // php中的单行注释
  3. /*
  4. * php中的多行注释
  5. */

基本理解就是这个样子,其他的还需要学习!

Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!