在 PHP 中是否有任何函数可以生成此行(来自 DB)
源数组结构:
[1]=>array(
["TYPE"] => 'FRUIT'
["VALUE"] => 'BANANA'
)
[2]=>array(
["TYPE"] => 'FRUIT'
["VALUE"] => 'ORANGE'
)
数据样本
fruit|apple
fruit|orange
fruit|strawberry
animal|rabbit
animal|buffalo
animal|ant
goods|scissor
goods|cutter
轻松成为嵌套数组:
array(
fruit => array('apple', 'orange', 'strawberry'),
animal => array('rabbit', 'buffalo', 'ant'),
goods => array('cutter', 'scissors'),
)
基于它的类型相似性。