如果我有一个变量,$num = 50如何将数字1-50放入数组中?
$num = 50
这可以通过使用简单的for循环来解决:
// Start ↓ End ↓ Step ↓ for ($i = 1; $i <= $num; ++$i) { $array[] = $i; }