(PHP 4, PHP 5, PHP 7, PHP 8)
settype — 設(shè)置變量的類型
var
要轉(zhuǎn)換的變量。
type
type
的可能值為:
成功時返回 true
, 或者在失敗時返回 false
。
示例 #1 settype() 示例
<?php
$foo = "5bar"; // string
$bar = true; // boolean
settype($foo, "integer"); // $foo 現(xiàn)在是 5 (integer)
settype($bar, "string"); // $bar 現(xiàn)在是 "1" (string)
?>
注意:
Maximum value for "int" is
PHP_INT_MAX
.