简体   繁体   中英

Create associative multi-dimensional array

I have 3 variables, each one holding a different information and send values from a text file dynamicaly. I want to put them in a Associative multi-dimensional array.

let's say :

$product sends car, truck, train, etc.
$price sends 1000, 3000,  1500, etc.
$year  sends 1997, 1980, 2008, etc.

How to create a function which generates an array as follow, when i execute print_r(myarray):

Array (
[0] => Array ( [product] => car [price] => 1000 [year] => 1997 ) 
[1] => Array ( [product] => truck [price] => 3000 [year] => 1980 )
[2] => Array ( [product] => train [price] => 1500 [year] => 2008 )) and so on. 

看一下这个问题: 用php中的循环定义2D数组

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM