array(   [0] => 'ttt',   [1] => '111'"/> array(   [0] => 'ttt',   [1] => '111'">
Home > Backend Development > PHP Tutorial > 字符串处置成数组

字符串处置成数组

WBOY
Release: 2016-06-13 10:57:17
Original
797 people have browsed it

字符串处理成数组
请教大牛们,如何将该字符串"{SUCESS=[ttt,111],ERROR=[rrr,ggg,vd]}"处理成数组
如下
array(
  'SUCESS' => array(
  [0] => 'ttt',
  [1] => '111'
  ),
  'ERROR'=> array(
  [0] => 'rrr',
  [1] => 'ggg',
  [2] => 'vd'
  )


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

PHP code
$s="{SUCESS=[ttt,111],ERROR=[rrr,ggg,vd]}";preg_replace('/(\w+)=\[(.*?)\]/e','$ar[$1]=explode(",","$2")',$s);print_r($ar);/*Array(    [SUCESS] => Array        (            [0] => ttt            [1] => 111        )    [ERROR] => Array        (            [0] => rrr            [1] => ggg            [2] => vd        ))*/<div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template