Blogger Information
Blog 29
fans 0
comment 0
visits 14943
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php运行原理、php变量类型小结
cool442
Original
435 people have browsed it

1. php运行原理

  • PHP就是超文本预处理语言
  • PHP是可以嵌入html代码中的语言
  • PHP是运行在服务器端的弱类型脚本语言

客户端(浏览器)<—->服务端server
是通过http(一种网络协议),一问一答的方式交互的。

  • 客户端发起一个http网络请求,
  • web服务器响应这个网络请求。
    如果客户端请求的是动态资源,web服务器请求(CGI)它的外挂模块php解释器,php连接它的黄金搭档mysql数据库服务器请求动态资源。

2. php变量类型

  • 4种标题类型:整型、字符串、布尔、浮点
  • 2种复合类型:数组、对象
  • 2种特殊类型:resource、null
  1. <?php
  2. $num=28;
  3. $msg="message";
  4. $boolean=true;
  5. $tol=38.56;
  6. var_dump($num);
  7. var_dump($msg);
  8. var_dump($boolean);
  9. var_dump($tol);
  10. echo "<hr>";
  11. // 数组: 一维数组、多维数组
  12. // 索引数组
  13. $arr=["中国","日本","印度","朝鲜"];
  14. var_dump($arr);
  15. echo "<hr>";
  16. // 关联数组
  17. $arr=["id"=>1,"hero"=>"超人","power"=>"激光眼"];
  18. var_dump($arr);
  19. echo "<hr>";
  20. // 多维数组
  21. $heros=[
  22. ["id"=>1,"hero"=>"超人","power"=>"激光眼"],
  23. ["id"=>2,"hero"=>"闪电侠","power"=>"神速"],
  24. ["id"=>3,"hero"=>"雷神","power"=>"雷神之锤"],
  25. ];
  26. var_dump($heros);
  27. echo "<hr>";
  28. // 对象
  29. $obj=new stdClass;
  30. var_dump($obj);
Correcting teacher:PHPzPHPz

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