php學習之變數的使用

來源:互聯網
上載者:User

複製代碼 代碼如下:<?php
//引用
$one="test";
two=&$one;//相當於傳地址,兩個變數指向一個地址

//動態變數
$one="######";
$two="one";
$three="two";

echo $three."<br>";//輸出"two"
echo $$three."<br>";//輸出"one"
echo $$$three."<br>";//輸出"######"

//php中有8個類型
//4種標量: int integer
// bool boolean
// float,double,real
// string
//2種複合類型: array
// object
//2種特殊類型: 資源類型 resource
// 空類型 null

//整數的聲明
$int=10; //十進位聲明
$int=045;//八進位聲明
$int=0xff;//十六進位聲明
$float=3.14E+5;//科學計數法
$float=3.14E-5;

//一下都是false的情況
$bool=false;
$bool=0;
$bool=0.000;
$bool=null;
$bool="";
$bool=" ";
$bool="0";
$bool=array();

//字串的聲明
//1.單引號和雙引號都可以聲明字串
//2.聲明的字串沒有長度限制
//3.在雙引號的字串中,既可以直接解析變數,又可以直接使用逸出字元(可以轉義單引號本身,也可以轉義逸出字元"\")
//4.在單引號的字串中,不可以直接解析變數,也不可以使用逸出字元
//5.在雙引號中不能再使用雙引號,在單引號中不能再使用單引號
//6.最好使用單引號,
$str='aaaaa';
$str="aaaa";
//定界符聲明字串,大量字串
//test是自訂的一個字串,後面不能有任何字元,空格也不可以
//也要以test這個自訂的字串結束,結束前不能有任何字元
$str=<<<test
this write content......
test;
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.