Blogger Information
Blog 16
fans 0
comment 0
visits 16740
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php运行过程和数据类型
刚哥哥
Original
729 people have browsed it

PHP 中文全称:超文本预处理器,是运行在服务器端的脚本语言,

专门生成html代码。

  1. 用户通过浏览器 向服务器发起请求,web服务器 接受到请求后,会进行识别,如果是它能构处理的,它会返回给浏览器,如果web服务器不能够直接进行处理,它会通过服务器扩展,转发请求,比如,php相关的请求,web服务器就会转发给php 引擎处理,php引擎处理好后返回给web服务器,web服务器在返回给浏览器。

实例演示php数据类型

  1. // php数据类型
  2. $nur = 2;//整数
  3. $nurr = 5.67;// 浮点数
  4. $tr = true; // 布尔型
  5. $tr = false; //布尔型
  6. $names =array('关羽','张飞','刘备','诸葛亮');//索引数组
  7. $names2 = ['id'=>'1','name'=>'刘备','sex'=>'男','age'=>'100'];//关联数组
  8. $str = '这是一个字符串'; //字符串
  9. $nu = NULL;// null 的值就是 null ,把变量的值设置为null 就清空了
  10. //对象是类的实例,类可以看作是一个容器,它有很多属性和方法,
  11. class car {
  12. public $name = '奔驰';
  13. }
  14. //实例化 car 类
  15. $carObj = new car();
  16. echo $carObj->name;
  17. gettype() 获取数据类型
  18. var_dump() 输出数据的值 和类型
  19. echo 输出数据,可以同时输出多个,用逗号 隔开,它输出的数据都成为了字符串
  20. ob-clean() 清屏
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