Blogger Information
Blog 38
fans 0
comment 0
visits 25318
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第一课—数据类型 2018年8月21日 20时00分
空白
Original
694 people have browsed it

实例

<?php
	$a ='字符串';
	$b = "php是web最好的语言";

	echo $a.'<br>';
	echo $b.'<br>';

	// 解析字符中的变量 单引号内的变量无法被解析,双引号内的变量可以被解析
	echo '这是一个$a','<br>';
	echo "这是一个{$a}",'<br>';

	// 特殊字符转义
	// 单引号无法解析特殊字符
	echo 'PHP 是 \'PHP Hypertext Preprocessor\' 的首字母缩略词\\\n\t'.'<br>';
	echo  "PHP 是 \"PHP Hypertext Preprocessor\" 的首字母缩略词\\\n\t"."<br>";

	// HEREDOC
	// heredoc 句法结构:<<< 在该运算符之后要提供一个标识符,然后换行。接下来是字符串 string 本身,最后要用前面定义的标识符作为结束标志,结束标志要独占一行
	// 自 PHP 5.3.0 起还可以在 Heredoc 结构中用双引号来声明标识符
	echo <<< "HEREDOC"
	Hello world! {$b} \n \t
HEREDOC;

	echo "<br>";

	// Nowdoc
	// heredocs 结构一样的标记 <<< 在该运算符之后要提供一个标识符, 但是跟在后面的标识符要用单引号括起来,然后换行。接下来是字符串 string 本身,最后要用前面定义的标识符作为结束标志,结束标志要独占一行
	echo <<< 'Nowdoc'
		hello world! {$b} \n \t \r
Nowdoc;

运行实例 »

点击 "运行实例" 按钮查看在线实例

QQ截图20180823223437.png

手写:

IMG_20180823_210337.jpg

总结:

    1.纯php文档必须省略结尾标记 ?>

    2.php代码必须在服务器执行

    3.php变量命名规则:以$符号开头后面跟着变量名称;变量名称只能以字母或下划线开头,变量名称不能含有特殊字符

    4.php变量名称严格区分大小写

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