-2
我在PHP編碼是新的,我想在動態的多陣列增加一些變量的值,下面是我的代碼...插入值到PHP多陣列
$books = array (
"finality"=> array (
"title" => 1,
"author" => 2,
"thumbnail" => 3,
"file" => 4,
"comment" => 5,
),
"science"=> array (
"title" => 1,
"author" => 2,
"thumbnail" => 3,
"file" => 4,
"comment" => 5,
),
"morality"=> array (
"title" => 1,
"author" => 2,
"thumbnail" => 3,
"file" => 4,
"comment" => 5,
),
)
我想添加變量等。 $ title,$ author,$ pic2,$ pic,$ comment,在$ books ['morality']之類的數組中。請幫幫我。