Blogger Information
Blog 14
fans 0
comment 0
visits 11602
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP变量声明及数据类型
暮光薄凉
Original
1766 people have browsed it
1、php起始标签

php开始结束标签:<?php ?>
输出、打印文本: echo
查看打印变量类型: var_dump
分号为分格符 ;
// 单行注释 /* 多行注释 */

2、变量声明

使用 $ 符,区分大小写
赋值使用 = 号

  1. $name = "张三";
  2. $age = 18;
3、命名规则:

1.下划线命名法
$app_name = "李四";
2.小驼峰命名法,第一个单词首字母小写,后面的单词首字母大写
$appAge = 18;
3.大驼峰命名法,第一个单词首字母大写,后面的单词首字母大写
$AppAge = 20;
4.类型命名法,以保存的变量类型字母开头,如:字符串类型的变量声明
$sName = "诸葛";

4、引号

1.单引号 ‘’ ,保存文本、字符串
2.双引号 “” ,保存文本、变量
3.转义符 \ ,转换符号意义

  1. $name = "张三";
  2. echo '他的名字叫"$name"';
5、基本类型:字符串、数字(整数,浮点数)、布尔

1.字符串长度计算:一个汉字3个长度,一个英文字母为1个长度
2.复合类型:数组、对象

  1. $ann = ['1','2','aaa'];
  2. $obj = new 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