在PHP中
我們都知道
(
settype()函數的功能是將變量設置為指定的數據類型
boolean settype(maxed $var
從該函數的語法格式中
<?php
/*
* Created on
*
* To change the template for this generated file go to
* Window
*/
$str =
$fal = true;
settype($str
echo $str;
echo
settype($fal
echo $fal;
?>
在本例中
(
gettype()函數主要用於獲取指定變量的數據類型
string gettype(mixed $var)
該函數只有一個指定類型的參數
<h
<?php
/*
* Created on
*
* To change the template for this generated file go to
* Window
*/
$lastname =
$id =
echo
echo
echo
echo
echo
echo
?>
</h
執行上述代碼
[
From:http://tw.wingwit.com/Article/program/PHP/201311/21597.html