目录

PHP settype() 函数

❮ PHP 变量处理参考

示例

将变量转换为特定类型:

<?php
$a = "32"; // string
settype($a, "integer"); // $a is now integer

$b = 32; // integer
settype($b, "string"); // $b is now string

$c = true; // boolean
settype($c, "integer"); // $c is now integer (1)
?>
亲自试一试 »

定义和用法

settype() 函数将变量转换为特定类型。


语法

settype( variable, type);

参数值

Parameter Description
variable Required. Specifies the variable to convert
type Required. Specifies the type to convert variable to. The possible types are: boolean, bool, integer, int, float, double, string, array, object, null 

技术细节

返回值: TRUE 成功,FALSE 失败
返回类型: 布尔值
PHP 版本: 4.0+

❮ PHP 变量处理参考