//下划线风格,操作符两边空格,字符串单引号 $user_name = '王小名';
//函数 //大括号 , 参数列表空格 function eat_meat($type, $how_much) { }
//数组风格 $some_things = array( 'name'=>'小小', 'sex'=>'石头' );