Blogger Information
Blog 22
fans 0
comment 0
visits 11773
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
2020.1.7PHP流程分支
Original
548 people have browsed it
2020-01-07教学内容1. PHP中的常量 常量是一种特殊的变量, 仅允许初始化一次, 不允许更新, 可以理解为只读变量常量没有作用域限制, 在编程的时候非常有用, 经常用来表示状态, 或数据共享常量不是变量, 不需要”$”, 但是常量名仍然要遵守PHP标识符的命名规范常量的创建: 函数: define()指令: const 相同:都可以定义常量不同之处: define()可以使用表达式, 而const中能用字面量 2. 单引号与双引号 单引号: 内部的值,按字面量的形式进行处理双引号: 内部的值, 将被解析,如果值是变量名或者特殊字符,会被解析出来 3. 数组的基本操作3.1 创建数组 字面量: 将多个数组元素放在一对中括号[]中, 多个元素之间用逗号分隔开逐个添加: 将每一个元素,通过赋值的方式, 直接添加/追加到数组中$arr = [1,2,3,4];`$arr = [0=>1,1=>2,2=>3,3=>4];`如果元素的键名是数值,则创建的是索引数组, 如果索引是连续的,键名可以省略$stu = ['id'=>101, 'name'=>'小胖', 'course'=>'php']如果键名是字符串, 则创建的是关联数组,键名必须符合PHP标识符的命名规范 4. 流程控制之分支 if: 单分支if - else: 双分支if - elseif - else: 多分支switch - case - break: 多分支简化方案
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