Home >php教程 >php手册 >php数据类型02

php数据类型02

WBOY
WBOYOriginal
2016-06-06 19:57:561885browse

1、php是弱类型语言,不需要定义变量类型 2.可通过getType(变量,常量)得到类型,如下: $a = nihao; echo getType($a); //系统函数不区分大小写gettype()也可以 3.判断数据类型也可以: is_int(),is_float(),is_string(),is_bool() //布尔型命名和其他有点

1、php是弱类型语言,不需要定义变量类型

 

2.可通过getType(变量,常量)得到类型,如下:

   $a  = "nihao";

   echo getType($a);    //系统函数不区分大小写gettype()也可以

 

3.判断数据类型也可以:

      is_int(),is_float(),is_string(),is_bool()   //布尔型命名和其他有点不一样

     is_array(),is_object(),is_resource(),is_null()

      getType()返回字符串,而上面返回boolean类型,因此上面判断函数比getType()更方便我们操作

 

4.遍历数组,注意数据打印加编号写法

   $array = array("1","2","3");
    if(is_array($array)){
          foreach($array as $key => $val){
         echo $key."=".$val."";
      }
    }else {
           echo "this is not a array";
    }

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn