settype():用來設定或轉換變數的型別
語法:
settype (
$var
,$type
)
引數:
$var:需要操作的變數
$type:要轉換的型別
其值如下:
boolean:布林型別
integer:整數型別
float:小數型別
string:字串型別
array:陣列型別
object:物件型別
null:空型別
返回值:成功返回 true , 失敗返回 false
<?php
$foo
="5bar"
;$bar
=true
;echo
gettype
($foo);
echo''
;echo
gettype
($bar);
//改變它們的型別
settype
($foo
,"integer");
settype
($bar
,"string");
echo''
;echo
gettype
($foo);
echo''
;echo
gettype
($bar);
?>
輸出結果:
string
boolean
integer
string
文章參考:
函式介紹 初識函式(定義,呼叫,引數介紹)
函式就是盛放 的容器,把實現某一功能的一組 丟到乙個函式中,就做成了乙個小工具。具備某一功能的工具就是函式。事先準備工具的過程就是函式的定義。遇到應用場景拿來就用就是函式的呼叫沒用函式之前面臨的問題 1 冗餘,程式組織結構不清晰 可讀性差 2 擴充套件性差def 函式名 引數1,引數2,引數3.文件...
部分函式介紹()
void cvcanny const cvarr image,cvarr edges,double threshold1,double threshold2,int aperture size 3 函式功能 函式 cvcanny 採用 canny 演算法發現輸入影象的邊緣而且在輸出影象中標識這些邊緣...
assert 函式介紹
assert 斷言 可以有兩種形式 assert expression1 assert expression1 expression2 expression1 應該總是產生乙個布林值。expression2 可以是得出乙個值的任意表示式。這個值用於生成顯示更多除錯資訊的 string 訊息。斷言在預...