PHP settype() 函数
示例
将变量转换为特定类型
<?php
$a = "32"; // 字符串
settype($a, "integer"); // $a 现在是整数
$b = 32; // 整数
settype($b, "string"); // $b 现在是字符串
$c = true; // 布尔值
settype($c, "integer"); // $c 现在是整数 (1)
?>
亲自尝试 »
定义和用法
settype() 函数将变量转换为特定类型。
语法
settype(variable, type);
参数值
参数 | 描述 |
---|---|
variable | 必需。指定要转换的变量 |
type | 必需。指定将variable转换为的类型。可能的类型有:boolean,bool,integer,int,float,double,string,array,object,null |
技术细节
返回值 | 成功返回 TRUE,失败返回 FALSE |
---|---|
返回类型 | 布尔值 |
PHP 版本 | 4.0+ |
❮ PHP 变量处理参考