四種標量類型:
兩種復合類型:
最後是兩種特殊類型:
為了確保代碼的易讀性,本手冊還介紹了一些偽類型:
以及偽變量 $....
可能還會讀到一些關於“雙精度(double)”類型的參考。實際上 double 和 float 是相同的,由於一些歷史的原因,這兩個名稱同時存在。
變量的類型通常不是由程序員設定的,確切地說,是由 PHP 根據該變量使用的上下文在運行時決定的。
Note: 如果想查看某個表達式的值和類型,用 var_dump()。
如果只是想得到一個易讀懂的類型的表達方式用於調試,用 gettype()。要查看某個類型,不要用 gettype(),而用 is_type 函數。以下是一些范例:
復制代碼 代碼如下:
<?php
$a_bool = TRUE; // a boolean
$a_str = "foo"; // a string
$a_str2 = 'foo'; // a string
$an_int = 12; // an integer
echo gettype($a_bool); // prints out: boolean
echo gettype($a_str); // prints out: string
// If this is an integer, increment it by four
if (is_int($an_int)) {
$an_int += 4;
}
// If $bool is a string, print it out
// (does not print out anything)
if (is_string($a_bool)) {
echo "String: $a_bool";
}
?>
如果要將一個變量強制轉換為某類型,可以對其使用強制轉換或者 settype() 函數。
注意變量根據其當時的類型在特定場合下會表現出不同的值。更多信息見類型戲法。此外,你還可以參考 PHP 類型比較表看不同類型相互比較的例子。