给自己1分钟时间,学会php
环境配置
https://www.xp.cn/
- 打开上面的网页,下载php集成环境,
phpstudy
- 启动服务
代码编写
- hello
<?php
echo "hello";
print("hello");
?>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 编写网页
<!--
可以这样理解:
写的php文件中的style,script会被安顺序解析生成dom树,
注意:: 全部都在body里面
-->
<!-- 会被解析到html的body里面 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>我是html</h1>
</body>
</html>
<?php
echo "<h1>我是最前面的php</h1>";
?>
<style>
h1{
color: red;
}
.box{
width: 200px;
height: 200px;
background: #ccc;
color:red;
line-height: 200px;
text-align: center;
}
</style>
<!-- <script>
alert("hello")
</script>
<script>
alert("22")
</script> -->
<?php
echo "<h1>我在前面</h1>";
?>
<!-- <html>
<body>
<div class="box">
我是测试盒子
</div>
</body>
</html> -->
<?php
print("<h1>for</h1>");
for($i=1; $i<5; $i++){
// 注意双引号可以解析变量,但是单引号不行
echo "<p>我是for循环渲染的$i</p>";
}
print("<h1>while</h1>");
$num = 5;
while($num>0){
print("$num");
$num--;
}
$test = "switch";
// 这里不会变
// echo '$test
';
echo "<h1>$test</h1>";
$age = 18;
switch($age) {
case $age >18:
print("age > 18");
break;
case $age < 18 :
print("age < 18");
break;
default:
print("age=18");
}
print("<h1>if</h1>");
$a = 3;
if($a>1){
print("$a>1");
}
?>
<!-- <script>
alert("我在后面")
</script> -->
<style>
h1{
color: blue;
}
</style>
<?php
echo "<h2>看看是不是写在最后面的script才会被解析到body里面吧。</h2>"
?>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
语法跟c语言类似,变量声明用
$
, 双引号会解析变量,单引号不会。
打开php
- 渲染的结果
<!--
可以这样理解:
写的php文件中的style,script会被安顺序解析生成dom树,
注意:: 全部都在body里面
-->
<!-- 会被解析到html的body里面 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>我是html</h1>
</body>
</html>
<h1>我是最前面的php</h1>
<style>
h1{
color: red;
}
.box{
width: 200px;
height: 200px;
background: #ccc;
color:red;
line-height: 200px;
text-align: center;
}
</style>
<!-- <script>
alert("hello")
</script>
<script>
alert("22")
</script> -->
<h1>我在前面</h1>
<!-- <html>
<body>
<div class="box">
我是测试盒子
</div>
</body>
</html> -->
<h1>for</h1><p>我是for循环渲染的1</p><p>我是for循环渲染的2</p><p>我是for循环渲染的3</p><p>我是for循环渲染的4</p><h1>while</h1>54321<h1>switch</h1>age=18<h1>if</h1>3>1
<!-- <script>
alert("我在后面")
</script> -->
<style>
h1{
color: blue;
}
</style>
<h2>看看是不是写在最后面的script才会被解析到body里面吧。</h2>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
至此你已经学会了,php编写网页,有缘再会。