我正在設計一個購物車,它將允許用戶以csv格式上傳產品。問題是其中一列包含動態子列。解釋這種情況的最好的方法是一個產品數據的一個示例:php csv動態列
stdClass Object
(
[id] => 412
[description] => this is the description for phat cars
[title] => Phat Cars
[price] => 2500.00
[custom] => Array
(
[custom_info] => Array
(
)
[custom_price] => Array
(
)
)
)
字段定製[custom_info]和定製[custom_price]可以包含任意數量的字段。我想不出一個解決方案,使用csv動態列,但認爲我會拋出問題,看看有沒有人有任何建議。
這不是一個好的解決方案,但可以使用多行。我主要只是爲了將數據導出到CSV文件而做到這一點。 – AndrewR