PHP settype() 函数

2018-12-02 17:25 更新

定义和用法

settype() — 设置变量的类型


语法

bool settype ( mixed &$var , string $type )
将变量 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 起)

技术细节

返回值:将变量 var 的类型设置成 type。
PHP 版本:PHP 4, PHP 5, PHP 7


更多实例

实例 

<?php
$foo = "5w3cschool"; // string
$bar = true;   // boolean

settype($foo, "integer"); // $foo 现在是 5   (integer)
settype($bar, "string");  // $bar 现在是 "1" (string)

print_r($foo);
print_r($bar);
?>

运行实例 »

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号