数据分析师2017-09-30 23:35:18
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.
迷茫2016-12-22 13:35:31
$a=array();$a[0]='苹果';$a[1]='梨';
$a=array('苹果','梨');
$a=array(0=>'苹果',1=>'梨');