2013-04-25 9 views
13

Diciamo che ho questo output da qualche fonte in cui non ho accesso al PHP matrice creato originale:Ricreare array PHP originale dall'uscita print_r

Array 
(
    [products] => Array 
     (
      [name] => Arduino Nano Version 3.0 mit ATMEGA328P 
      [id] => 10005 
     ) 

    [listings] => Array 
     (
      [category] => 
      [title] => This is the first line 
This is the second line 
      [subtitle] => This is the first subtitle 
This is the second subtitle 
      [price] => 24.95 
      [quantity] => 
      [stock] => 
      [shipping_method] => Slow and cheap 
      [condition] => New 
      [defects] => 
     ) 

    [table_count] => 2 
    [tables] => Array 
     (
      [0] => products 
      [1] => listings 
     ) 

) 

Ora vorrei input che i dati e hanno un algoritmo ricrea l'array originale che stava stampando, quindi posso usarlo per la mia applicazione.

Attualmente sto pensando a un sub_str() e alle espressioni regex che estraggono dati e lo inseriscono in modo appropriato. Prima di andare avanti, c'è un modo più semplice, tramite codice già scritto o plug-in php che fanno questo per me già là fuori?

+0

mostrare quello che hai provato ... – michi

+0

Attualmente sto pensando un sub_str() e dichiarazioni regex che tirano i dati e il luogo in modo appropriato. Prima di andare avanti, c'è un modo più semplice, tramite codice già scritto o plug-in php che fanno questo per me già là fuori? – Dan

+3

questo è ciò che è [var_export] (http://www.php.net/var_export), anziché print_r. –

risposta

19
function print_r_reverse($in) { 
    $lines = explode("\n", trim($in)); 
    if (trim($lines[0]) != 'Array') { 
     // bottomed out to something that isn't an array 
     return $in; 
    } else { 
     // this is an array, lets parse it 
     if (preg_match("/(\s{5,})\(/", $lines[1], $match)) { 
      // this is a tested array/recursive call to this function 
      // take a set of spaces off the beginning 
      $spaces = $match[1]; 
      $spaces_length = strlen($spaces); 
      $lines_total = count($lines); 
      for ($i = 0; $i < $lines_total; $i++) { 
       if (substr($lines[$i], 0, $spaces_length) == $spaces) { 
        $lines[$i] = substr($lines[$i], $spaces_length); 
       } 
      } 
     } 
     array_shift($lines); // Array 
     array_shift($lines); // (
     array_pop($lines); //) 
     $in = implode("\n", $lines); 
     // make sure we only match stuff with 4 preceding spaces (stuff for this array and not a nested one) 
     preg_match_all("/^\s{4}\[(.+?)\] \=\> /m", $in, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER); 
     $pos = array(); 
     $previous_key = ''; 
     $in_length = strlen($in); 
     // store the following in $pos: 
     // array with key = key of the parsed array's item 
     // value = array(start position in $in, $end position in $in) 
     foreach ($matches as $match) { 
      $key = $match[1][0]; 
      $start = $match[0][1] + strlen($match[0][0]); 
      $pos[$key] = array($start, $in_length); 
      if ($previous_key != '') $pos[$previous_key][1] = $match[0][1] - 1; 
      $previous_key = $key; 
     } 
     $ret = array(); 
     foreach ($pos as $key => $where) { 
      // recursively see if the parsed out value is an array too 
      $ret[$key] = print_r_reverse(substr($in, $where[0], $where[1] - $where[0])); 
     } 
     return $ret; 
    } 
} 

non il mio codice, che si trova qui nei commenti: print_r 'Matt' è il proprietario

0

Ho lavorato anche una soluzione per il vostro problema, perché è uno strumento molto utile per ricreare le questioni qui Stack Overflow. La mia fonte si trova qui: https://github.com/etalon/aprp

L'ho fatto in modo un po 'diverso: nella tua stringa non hai bisogno di interruzioni di linea, così passo attraverso i caratteri. Uno svantaggio: se ci sono parentesi o parentesi nei valori dell'array, non funzionerà.