标签:
一、php的标记风格和注释
1.<?php ?>
2.<? ?>
3.<% %>
提示:如果要使用短标签方式需要在php.ini中开启short_open_tag
注释:采用//、/* */等方式
二、数据类型
boolean (布尔型)
string(字符型)
int (整型)
float (浮点型)
array(数组)
object(对象)
null (特殊类型)
转换数据类型方法
比如:123转换成字符型
(string)123
比如:12323bac转换成整型
(int)12323bac //结构12312
检查数据类型:
is_array()
is_string()
is_int()
is_null()
等is方式判断类型
标签:
原文地址:http://www.cnblogs.com/feimengv/p/4430210.html