首頁 > 後端開發 > php教程 > 常用的数值判断函数_PHP

常用的数值判断函数_PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
發布: 2016-06-01 12:30:19
原創
1017 人瀏覽過



常用的数值判断函数



 //判断数组
 $colors = array("red", "blue", "green");
 if(is_array($colors))
 {
  print("colors is an array"."
");
 }
 //双精度数判断
 $Temperature = 15.23;
 if(is_double($Temperature))
 {
  print("Temperature is a double"."
");
 }
 //整数判断
 $PageCount = 2234;
 if(is_integer($PageCount))
 {
  print("$PageCount is an integer"."
");
 }
 //对象判断
 class widget
 {
  var $name;
  var $length;
 }
 $thing = new widget;
 if(is_object($thing))
 {
  print("thing is an object"."
");
 }
 //字符判断
 $Greeting = "Hello";
 if(is_string($Greeting))
 {
  print("Greeting is a string"."
");
 }
?>


常用的数值判断函数
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板