(PHP 4, PHP 5)
settype — 设置变量的类型
将变量 var
的类型设置成
type
。
type
的可能值为:
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Example #1 settype() 示例
<?php
$foo = "5bar"; // string
$bar = true; // boolean
settype($foo, "integer"); // $foo 现在是 5 (integer)
settype($bar, "string"); // $bar 现在是 "1" (string)
?>
var
The variable being converted.
type
Possibles values of type
are:
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Example #2 settype() example
<?php
$foo = "5bar"; // string
$bar = true; // boolean
settype($foo, "integer"); // $foo is now 5 (integer)
settype($bar, "string"); // $bar is now "1" (string)
?>
Note:
Maximum value for "int" is
PHP_INT_MAX
.