程式碼如下:
//引用
$one="test";
two=&$one;//相當於傳送位址,兩個變數指向一個位址
//動態變數$
$ "######";
$two="one";
$three="two";
echo $three."
";//輸出"two"
echo $$three."
";//輸出"one"
echo $$$three."
";//輸出"######"
//php中有8個類型
//4種標量: int integer
// bool boolean
// float,double,real
// string
//2種複合型別: array
// object/
//2種類型: null
//整數的聲明
$int=10; //十進位聲明
$int=045;//八進位聲明
$int=0xff;//十六進位聲明
$f ;//科學計數法
$float=3.14E-5;
//一下都是false的情況
$bool=false;
$bool=0;
$bool=0.000000 $bool="";
$bool=" ";
$bool="0";
$bool=array();
//字串的聲明
//1.單引號和雙引號都可以聲明字串
//2.宣告的字串沒有長度限制
//3.在雙引號的字串中,既可以直接解析變量,又可以直接使用轉義字元(可以轉義單引號本身,也可以轉義轉義字元"")
//4.在單引號的字串中,不可以直接解析變量,也不可以使用轉義字元
//5.在雙引號中不能再使用雙引號,在單引號中不能再使用單引號
//6.最好使用單引號,
$str='aaaaa';
$str="aaaa";
//定界符宣告字串,大量字串
/ /test是自訂的字串,後面不能有任何字符,空格也不可以
//也要以test這個自訂的字串結束,結束前不能有任何字符
$str= this write content......
test;
>