$a = array
([0] => array
([date] => 2019-12-02
[time] => 1575216000
[week] => 周一
)[1] => array
([date] => 2019-12-03
[time] => 1575302400
[week] => 周二
)[2] => array
([date] => 2019-12-04
[time] => 1575388800
[week] => 週三
)[3] => array
([date] => 2019-12-05
[time] => 1575475200
[week] => 周四
)[4] => array
([date] => 2019-12-06
[time] => 1575561600
[week] => 周五
)[5] => array
([date] => 2019-12-07
[time] => 1575648000
[week] => 週六
)[6] => array
([date] => 2019-12-08
[time] => 1575734400
[week] => 週日))
$b = array
([0] => 公司
[1] => 公司
[2] => 公司
[3] => 公司
[4] => 公司
[5] => 公司
[6] => 休息
)需要將陣列b的值拼接到陣列a對應的key的值
foreach($a as $key=>$val) }
//拼接後的結果
array
([0] => array
([date] => 2019-12-02
[time] => 1575216000
[week] => 周一
[content] => 公司
)[1] => array
([date] => 2019-12-03
[time] => 1575302400
[week] => 周二
[content] => 公司
)[2] => array
([date] => 2019-12-04
[time] => 1575388800
[week] => 週三
[content] => 公司
)[3] => array
([date] => 2019-12-05
[time] => 1575475200
[week] => 周四
[content] => 公司
)[4] => array
([date] => 2019-12-06
[time] => 1575561600
[week] => 周五
[content] => 公司
)[5] => array
([date] => 2019-12-07
[time] => 1575648000
[week] => 週六
[content] => 公司
)[6] => array
([date] => 2019-12-08
[time] => 1575734400
[week] => 週日
[content] => 休息
)
陣列的運用
int main printf p n a printf p n a 1 printf d n sizeof a a中a表示整型陣列的首元素位址,a表示首元素,整型陣列,乙個元素佔4個位元組。printf p n a printf p n a 1 printf d n sizeof a a表示整個陣...
陣列的運用
1.在js中陣列的定義方式有兩種 var a 1,2,3,4 var b new array 1,2,3,4 當兩個陣列中只有乙個值的時候是有區別的 var a 4 此陣列只有乙個元素,為 4 var b new arr 4 此陣列有4個元素 2.通過命令對陣列的長度進行修改 例如 var a 1,...
50個 JQuery 運用技巧
50個 jquery 使用技巧 感謝 1.如何建立巢狀的過濾器 允許你減少集合中的匹配元素的過濾器,只剩下那些與給定的選擇器匹配的部分。在這種情況下,查詢刪除了任何沒 not 有 has 包含class為 selected selected 的子節點。filter not has selected ...