这个问题跟你上次问的不是一样吗?1.索引用循环的数字来填充
for($n=10;$n<=33;$n++){
   $title[$n]=${'title'.$n};
}
2.索引从0开始
for($n=10;$n<=33;$n++){
   $title[]=${'title'.$n};
}