2020年7月29日
摘要: 函数 function(){} <?phpfunction add($a,$b){ echo $a.'+'.$b.'='; return $a+$b;}$s=add(2,3);echo $s.'<br>';function sub($a,$b){ echo $a.'-'.$b.'='; return 阅读全文
posted @ 2020-07-29 21:53 浩空之梦 阅读(90) 评论(0) 推荐(0) 编辑
摘要: if,else,elseif/else if,switch,break,continue,for,while,do-while,foreach,declare,require,include,requir_once,include_once,goto,return 流程控制替代语法 开始:替代{,结 阅读全文
posted @ 2020-07-29 20:27 浩空之梦 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 表达式 $a=5; 运算符 算术运算符 -, +,-, *, /,%,** 比较运算符 !,!=,<,>,<=,>=,==, ,!==,<>,<=> 逻辑运算符 and,or,xor,!,&&,|| 字符串运算符 .,.= 类型运算符 instanceof 阅读全文
posted @ 2020-07-29 20:15 浩空之梦 阅读(44) 评论(0) 推荐(0) 编辑