<scriptlanguage="php"> //嵌入方式一 echo("test"); </script> <? //嵌入方式二 echo"<br>test2"; ?> <?php //嵌入方式三 echo"<br>test3"; ?> |
<? //这里是单行注释 echo"test"; /* 这里是多行注释!可以写很多行注释内容 */ ?> |
<? $a=1; functiontest(){ echo$a; } test();//这里将不能输出结果“1”。 functiontest2(){ global$a; echo$a; } test2();//这样可以输出结果“1”。 ?> |
<? //变量的变量 $a="hello"; $$a="world"; echo"$a$hello";//将输出"helloworld" echo"$a${$a}";//同样将输出"helloworld" ?> <? //变量的函数 functionfunc_1(){ print("test"); } functionfun($callback){ $callback(); } fun("func_1");//这样将输出"test" ?> |
<? $a[0]="abc"; $a[1]="def"; $b["foo"]=13; $a[]="hello";//$a[2]="hello" $a[]="world";//$a[3]="world" $name[]="jill";//$name[0]="jill" $name[]="jack";//$name[1]="jack" ?> |
<? //方法一: functionfoo(&$bar){ $bar.="andsomethingextra"; } $str="ThisisaString,"; foo($str); echo$str;//output:ThisisaString,andsomethingextra echo"<br>"; //方法二: functionfoo1($bar){ $bar.="andsomethingextra"; } $str="ThisisaString,"; foo1($str); echo$str;//output:ThisisaString, echo"<br>"; foo1(&$str); echo$str;//output:ThisisaString,andsomethingextra ?> |
<? functionmakecoffee($type="coffee"){ echo"makingacupof$type.\n"; } echomakecoffee();//"makingacupofcoffee" echomakecoffee("espresso");//"makingacupofespresso" /* 注意:当使用参数默认值时所有有默认值的参数应该在无默认值的参数的后边定义。否则,程序将不会按照所想的工作。 */ functiontest($type="test",$ff){//错误示例 return$type.$ff; } |
<? //下面为错误语句 if($condition) include($file); else include($other); //下面为正确语句 if($condition){ include($file); }else { include($other); } ?> |