Home >Backend Development >PHP Tutorial > 请教php怎么将一维数组的值分割成数组

请教php怎么将一维数组的值分割成数组

WBOY
WBOYOriginal
2016-06-13 13:10:57851browse

请问php如何将一维数组的值分割成数组?
我现在的数组形式为
Array
 ( 
[0] => 成交时间 成交价 价格变动 成交量(手) 成交额(元) 性质


我希望分割成的形式为
array
(
[0]=>
  array
  (
  [0]=> 成交时间
  [1]=> 成交价
  [2]=> 价格变动
  [3]=> 成交量(手)
  [4]=> 成交额(元)
  [5]=> 性质
  )
)

------解决方案--------------------

PHP code
$ar=Array
 ( 
0 => '成交时间 成交价 价格变动 成交量(手) 成交额(元) 性质'
);
foreach($ar as &$v) $v=explode(' ',$v); 
print_r($ar); <div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn