好好学习,天天向上!!!
What are the ways to define an array? -PHP Chinese website Q&A-What are the ways to define arrays? -PHP Chinese website Q&A
Please watch and learn.
$a=array();$a[0]='苹果';$a[1]='梨';
$a=array('苹果','梨');
$a=array(0=>'苹果',1=>'梨');
What are the ways to define an array? -PHP Chinese website Q&A-What are the ways to define arrays? -PHP Chinese website Q&A
Please watch and learn.
$a=array();$a[0]='苹果';$a[1]='梨';
$a=array('苹果','梨');
$a=array(0=>'苹果',1=>'梨');