在 php 中str_getcsv到多维数组中
我有这样的csv值:
$csv_data = "test,this,thing
hi,there,this
is,cool,dude
have,fun";
我想获取整个CSV字符串并将其读入多维数组,以便我得到:
array(
array(
'test' => 'hi',
'this' => 'there',
'thing' => 'this'
),
array(
'test' => 'is',
'this' => 'cool',
'thing' => 'dude'
),
array(
'test' => 'have',
'this' => 'fun',
'thing' => ''
)
);
我想要这样的输出,请注意CSV值是动态的。