PHP settype() 函數(shù)

2018-12-02 17:25 更新

定義和用法

settype() — 設(shè)置變量的類型


語(yǔ)法

bool settype ( mixed &$var , string $type )
將變量 var 的類型設(shè)置成 type。

參數(shù)描述
var要轉(zhuǎn)換的變量。
type

type 的可能值為:

  • “boolean” (或?yàn)椤癰ool”,從 PHP 4.2.0 起)
  • “integer” (或?yàn)椤癷nt”,從 PHP 4.2.0 起)
  • “float” (只在 PHP 4.2.0 之后可以使用,對(duì)于舊版本中使用的“double”現(xiàn)已停用)
  • "string"
  • "array"
  • "object"
  • “null” (從 PHP 4.2.0 起)

技術(shù)細(xì)節(jié)

返回值:將變量 var 的類型設(shè)置成 type。
PHP 版本:PHP 4, PHP 5, PHP 7


更多實(shí)例

實(shí)例 

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

settype($foo, "integer"); // $foo 現(xiàn)在是 5   (integer)
settype($bar, "string");  // $bar 現(xiàn)在是 "1" (string)

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

運(yùn)行實(shí)例 ?

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)