当前位置: 代码迷 >> PHP >> java软件工程师学php - 4. gettype()/settype()
  详细解决方案

java软件工程师学php - 4. gettype()/settype()

热度:378   发布时间:2012-10-13 11:38:17.0
java程序员学php - 4. gettype()/settype()
1.gettype()拿到数据类型
  比如 gettype(345); //返回"integer"
      gettype(some_object);// 返回"object"
  另有一些快捷的类型查询函数,如 is_double(), is_array(), is_string()等

2.settype()则强行改变数据的类型
   settype($a, 'double');
  相关解决方案