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.
我想像这样初始化数组
$my_arr = 数组(1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1);
有没有更好的方法来为 php 数组设置 20 个?
使用方式for i=0 ... to 19至少需要 3 个字符串,所以我认为这不是更好的选择。
for i=0 ... to 19
谢谢你。
是的,使用array_fill():
array_fill()
$my_arr = array_fill( 0, 20, 1);
现在,$my_arr有 20 个条目,从索引 0 到 19,值为 1。
$my_arr
使用array_fill功能
array_fill
$arr = array_fill(0, 20, 1);