php中,可利用settype()函數來設定變數類型,語法“settype($var,"資料型別")”;資料型別值可為“boolean”、“integer”、“float” 、「string」、「array」、「object」、「null」。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
在php中,可利用settype ()函數來設定變數類型。
settype() 函數用來設定變數的資料型態。 (版本需求: PHP 4, PHP 5, PHP 7)
語法:
settype ( $var , $type ) //将变量var类型设置成type类型
$type的可能值為:
"boolean" (或為"bool",由PHP 4.2.0 起)
"integer" (或為"int",從PHP 4.2.0 起)
"float" (只在PHP 4.2.0 之後可以使用,對於舊版本中使用的"double"現已停用)
"string "
"array"
"object"
"null" (從PHP 4.2 .0 起)
傳回值:設定成功時回傳TRUE, 失敗時回傳FALSE。
範例:
<?php $foo = "5bar"; // string $bar = true; // boolean settype($foo, "integer"); // $foo is now 5 (integer) settype($bar, "string"); // $bar is now "1" (string) ?>
推薦學習:《PHP影片教學》
以上是php怎麼設定變數類型的詳細內容。更多資訊請關注PHP中文網其他相關文章!