0
我試圖瞭解從一個在線教程一些代碼,和偶然的東西我不明白。
$productByCode = $db_handle->runQuery("SELECT * FROM tblproduct WHERE code='" . $_POST["code"] . "'");
$itemArray = array($productByCode[0]["code"]=>array('name'=>$productByCode[0]["name"],
'code'=>$productByCode[0]["code"],
'price'=>$productByCode[0]["price"]));
是什麼在array($productByCode[0]["code"]
的[0]
意思?
谷歌「php嵌套數組」 –