Blogger Information
Blog 1
fans 0
comment 0
visits 2001
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php运行原理与基本结构
720
Original
2011 people have browsed it

一、php运行原理

php运行原理.jpg

二、post与get请求的区别

GET请求
请求参数以键值对的方式,附加到url地址上,称为查询字符串,用?号与当前脚本分隔
url格式:'index.php?name=peter&age=30'
受url长度限制,'GET'方式传递的数据也是有限制的
服务器端脚本使用预定义变量数组'$_GHT'进行接收

POST请求
请求参数放在'header'请求头中发送,url地址看不到请求参数,适合敏感信息
通常是通过表单提交并用来更新服务器上的信息
适合发送大量的数据到服务器端,长度受到配置文件限制,但比'GET'要大得多
服务器端脚本使用预定义变量数组'$_POST'进行接收


三、如果将php脚本嵌入到html代码中

将php脚本嵌入到文件名以.php为后缀文件中的html代码中只要写<?php  php脚本代码  ?>即可

111.png

但是如果将php脚本嵌入到文件名以.html为后缀文件中的html代码中在浏览器却无法输出

如果将php放到html中.png



 四、php应用程序中的基本结构与include的作用

php的基本结构:顺序结构、分支结构、循环结构;

include的作用:可以将 PHP 文件的内容插入另一个 PHP 文件中


关于include应用的案例





1.png


3.png2.png


5.png



注意事项

在用include引用文件时,要注意文件路径,如下图header.php中,因为header.php与config.php在同一目录下,所以不用加inc,html中引用的style.css即使与header.php在同一目录下,但是却要按在加入页面实际运行时加载文件的路径来加载。


222.png

Correction status:Uncorrected

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