摘要:
类与对象 类class 属性有public protected private,const定义类常量extends继承,__construct构造,__destruct,代码利用trait, abstruct,抽象类,interface接口,implements接口实现 类可用foreach遍历属性 阅读全文
摘要:
函数 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 阅读全文
摘要:
if,else,elseif/else if,switch,break,continue,for,while,do-while,foreach,declare,require,include,requir_once,include_once,goto,return 流程控制替代语法 开始:替代{,结 阅读全文
摘要:
表达式 $a=5; 运算符 算术运算符 -, +,-, *, /,%,** 比较运算符 !,!=,<,>,<=,>=,==, ,!==,<>,<=> 逻辑运算符 and,or,xor,!,&&,|| 字符串运算符 .,.= 类型运算符 instanceof 阅读全文
摘要:
阅读全文
摘要:
数据类型bollean interger float string array object resource NULL callback/callable 输出 echo print print_r var_dump echo输出*arr不输出object语法错误 print同echo print 阅读全文
摘要:
<?php //变量以$开始 //&引用变量 $a=5; $b=&$a; echo "b:$B"; $a=3; echo "b:$b"; $b =7; echo "a:$a"; //可变变量 $aa="hello"; $$aa="wold!"; echo $hello.$aa.$$aa;//wold 阅读全文
摘要:
<!DOCTYPE html> <html> <body><?php // 这是 PHP 单行注释 /* 这是 PHP 多行 注释 */ ?> </body> </html> <?php $a="text";//php是弱类型语言/*php作用域local staic global paramete 阅读全文