Blogger Information
Blog 3
fans 0
comment 0
visits 1774
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础语法笔记——2018年4月13日12时30分
時節的博客
Original
555 people have browsed it

PHP入门课程对于有HTML基础的人来讲,理解起来并不难。开始学习一门课程一定要静下心来,多写多背。

/**
 * 1.PHP注释
 * 2.PHP+HTML混写
 * 3.PHP在服务器端执行
 * 4.向客户端发送生成的html代码:不是函数,是输出语句的语言结构
 * 		4.1	echo:直接发送
 * 		4.2	print:发送后返回1
 * 5.变量:临时给数据找个地方存。当前脚本(栈?)
 * 		四大特点
 * 		5.1	名字
 * 		5.2	作用域:黑社会收保护费,这条街是我的势力范围,乔峰BGM一出来当当当当。周润发。女孩——朱老师。以下10分钟疯狂举例子
 * 		5.3	类型:	
                        基本 int boolean float/double string 
 * 			复合array object
 * 			特殊null resource
 * 		5.4	命名规则:$开始+字符或下划线,区分大小写。
 * 		5.5	命名方法(??为啥四大特点有第五233)
 * 			下划线$_age
 * 			匈牙利 $sName $iAge
 * 			$siteName $ClassName
 * 		5.6	变量种类
 * 			用户自定义变量
 * 			系统预定义变量
 * 	6.字符串的基本了解
 * 		6.1	定界符:''原样输出 ""解析变量输出 {}括起来保证变量明确
 * 		6.2	输出特殊字符 转义字符\
 * 		6.3 heredoc 对应双引号
 * 		6.4 nowdoc	对应单引号 php5.3+版本有效
* 		
*/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PHP基础语法</title>
<link rel="stylesheet" href="">
</head>
<body>
<!-- html注释 -->
<hr/>
<h2><?php echo 'PHP混合写法' ?></h2>
<?php 
	$x = "<br/>";
	echo "直接输出\n";
	print '返回1'.$x;
	// 字符串定界符
	$money = '95人民币';
	$title1 = 'PHP中文网{$money}市值';
	$title2 = "PHP中文网{$money}市值";
	echo $title1.$x;
	echo $title2.$x;
	// 转义字符
	echo $gang1 = '\'郭德纲说\',我是\n你爸爸'.$x;
	// 双引号输出特殊字符
	echo $gang2 = "\"郭德纲说\",我是\n你爸爸".$x;
	// 2B函数
	echo nl2br($gang2 = "\"郭德纲说\",我是\n你爸爸".$x);
	$siteName = 'PHP中文网';
$heredoc = <<< HAHAHA
	"{$siteName}"致力于“撒打”算打算打算的!\n这里是我的家
HAHAHA;
	echo nl2br($heredoc);
 ?>
</body>
</html>

QQ截图20180413144702.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