Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 17 - 395 的值创建一个数组,但我不想输入每个数字,必须有更好的方法来做到这一点......有吗?
$x = array(17, 18, 19, 20,... 395);
谢谢,J
我想做的是这个
$x = array(17, 395); foreach ($x as $y => $z){ echo 'This is number '. $z . ''; }
只需使用范围。
$x = range(17, 395);
您应该使用循环 -因为 如果您执行 $array[] = $x,它会自动将 $x 添加到数组的末尾。