2014.01.14php数组声明
<?php /*php数组的多种声明 */ header("content-type:text/html; charset=utf-8"); //1.所以数组 $user[0]=1; $user[1]="zhangshan"; $user[2]="sex"; $user[3]=20; echo"<pre>"; print_r($user); ?>
if you don't try,you will never know!
<?php /*php数组的多种声明 */ header("content-type:text/html; charset=utf-8"); //1.所以数组 $user[0]=1; $user[1]="zhangshan"; $user[2]="sex"; $user[3]=20; echo"<pre>"; print_r($user); ?>