一、php开始篇

4种编码习惯
<?php echo 'hello world';?>

<? echo 'hello world';?>

<% echo 'hello world';%>

<script language='php'>echo 'hello world';</script>

3种注释风格
/* */    多行
//       单行
#     单行

3种取值方法(超全局数组变量):

$_POST['quantity']

$_GET['quantity']

$_REQUEST['quantity']

6种基本类型+2中特殊类型:

基本:

  Interger

  Float

  Sring

  Boolean

  Array

  Object

特殊:

   NULL(空)

       resource(资源)

 

posted @ 2014-03-21 13:50  kedarui  阅读(131)  评论(0编辑  收藏  举报