PHP的几个常用数字判断函数代码

来源:爱站网时间:2020-04-10编辑:网友分享
 PHP在网站开发的时候是很常见的,然而PHP的独特的语法有利于学习和广泛应用,那么PHP的几个常用数字判断函数代码,大家都清楚吗?爱站技术频道将为你详细介绍专业知识。

 PHP在网站开发的时候是很常见的,然而PHP的独特的语法有利于学习和广泛应用,那么PHP的几个常用数字判断函数代码,大家都清楚吗?爱站技术频道将为你详细介绍专业知识。

复制代码 代码如下:



常用的数值判断函数



//判断数组
$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的几个常用数字判断函数代码就到这里了,想要学习更多的专业知识,爱站技术频道是不错的选择哦。

上一篇:php遍历数组的方法分享

下一篇:php中常用的预定义变量小结

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载