这是我的数组:
$data['mytest'] = array(
array(
'title' => $mytest[0],
'heading' => 'My Heading',
'message' => $my[0],
),
array(
'title' => $mytest[1],
'heading' => 'My Heading',
'message' => $my[1],
)
);
如何使用Loop创建这种类型的数组?
答案 0 :(得分:0)
from shutil import copytree,copy2
def copy2_verbose(src, dst):
print('Copying {0}'.format(src))
copy2(src,dst)
copytree(source, destination, copy_function=copy2_verbose)
现在
$d1 = array();
for($i=0;$i<10;$i++){
array_push($data, array('title' => $mytest[$i],
'heading' => 'My Heading',
'message' => $my[$i],)
);
}
在这里,我们基本上推动主数组中的子数组,然后将创建的数组分配给$data['mytest'] = $d1