PHP 包含幾個函數可以判斷變數的型別,例如:gettype(),is_array(),is_float(),is_int(),is_object() 和 is_string()。
複製程式碼 程式碼如下:
$s = "this is a string";
$s = "this is a string";
$i = 9;
$arr = array(2,4,6);
is_string($s); //回傳TRUE,表示$s是一個字串變數
is_string($i ); //傳回FALSE,表示$i不是字串變數
is_array($arr); //傳回TRUE,表示$arr是一個陣列
is_array($s); //傳回FALSE,表示$s不是一個陣列
$str = "this is a string";
$int = 9;
$bool = FALSE;
echo "$str的型別是:".gettype($ str);
echo "
";
echo "
";
echo "$int的型別是:".gettype($int);
echo "";
echo "
";
echo "$bool的型別是:".gettype($bool);
以上就介紹了變數類型 PHP 判斷變數類型實作程式碼,包含了變數類型方面的內容,希望對PHP教學有興趣的朋友有幫助。