Home  >  Article  >  Backend Development  >  PHP小知识点

PHP小知识点

WBOY
WBOYOriginal
2016-06-23 14:31:05809browse

一、PHP 支持8种基本的数据类型
 1.四种标量类型:
  boolean (布尔型)
  integer (整型)
  float (符点型, 也称作 double)
  string (字符串)
 2.两种复合类型:
  array (数组)
  object (对象)
 3.最后是两种特殊类型:
  resource (资源)
  NULL (NULL)

二、.........

........

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
Previous article:php configure ?help说明Next article:php异步调用