Maison > Article > développement back-end > Méthode PHP pour restaurer les données traitées par print_r dans le tableau d'origine
La méthode php print_r peut imprimer et afficher les variables pour les rendre faciles à comprendre. Si la variable est une chaîne, un entier ou un flottant, la valeur de la variable elle-même sera imprimée. Si la variable est un tableau, les clés et les éléments seront affichés dans un certain format. l'objet est similaire à un tableau. print_r est utilisé pour imprimer de grands tableaux.
PHP ne restaure pas nativement les données imprimées par la méthode print_r dans le tableau d'origine, la méthode suivante a donc été écrite pour restaurer les données traitées par print_r dans le tableau d'origine.
RestorePrint.class.php
<?php/** * 将print_r处理后的数据还原为原始数组 * Date: 2016-10-31 * Author: fdipzone * Ver: 1.0 */class RestorePrint{ // class start public $res = array(); protected $dict = array(); protected $buf = ''; protected $keyname = ''; protected $stack = array(); public function __construct() { $this->stack[] =& $this->res; } public function __call($method, $param){ echo $this->buf .' not defined mehtod:'.$method. ' param:'.implode(',', $param); } public function set($word, $value=''){ if(is_array($word)){ foreach($word as $k=>$v){ $this->set($k, $v); } } $p =& $this->dict; foreach(str_split($word) as $ch){ if(!isset($p[$ch])){ $p[$ch] = array(); } $p =& $p[$ch]; } $p['val'] = $value; return $this; } public function parse($str){ $this->doc = $str; $this->len = strlen($str); $i = 0; while($i < $this->len){ $t = $this->find($this->dict, $i); if($t){ $i = $t; $this->buf = ''; }else{ $this->buf .= $this->doc{$i++}; } } } protected function find(&$p, $i){ if($i >= $this->len){ return $i; } $t = 0; $n = $this->doc{$i}; if(isset($p[$n])){ $t = $this->find($p[$n], $i+1); } if($t){ return $t; } if(isset($p['val'])){ $arr = explode(',', $p['val']); call_user_func_array(array($this, array_shift($arr)), $arr); return $i; } return $t; } protected function group(){ if(!$this->keyname){ return ; } $cnt = count($this->stack)-1; $this->stack[$cnt][$this->keyname] = array(); $this->stack[] =& $this->stack[$cnt][$this->keyname]; $this->keyname = ''; } protected function brackets($c){ $cnt = count($this->stack)-1; switch($c){ case ')': if($this->keyname){ $this->stack[$cnt][$this->keyname] = trim($this->buf); } $this->keyname = ''; array_pop($this->stack); break; case '[': if($this->keyname){ $this->stack[$cnt][$this->keyname] = trim($this->buf); } break; case ']': $this->keyname = $this->buf; break; } $this->buf = ''; } } // class end?>
demo.php
<?phprequire 'RestorePrint.class.php';$print_r_data = <<<TXT Array ( [name] => fdipzone [gender] => male [age] => 18 [profession] => programmer [detail] => Array( [grade] => 1 [addtime] => 2016-10-31 ) ) TXT; // 显示打印的数据echo '显示打印的数据<br>'; echo '<pre class="brush:php;toolbar:false">'.$print_r_data.''; $oRestorePrint = new RestorePrint; $oRestorePrint->set('Array', 'group'); $oRestorePrint->set(' [', 'brackets,['); $oRestorePrint->set('] => ', 'brackets,]'); $oRestorePrint->set(')', 'brackets,)'); $oRestorePrint->parse($print_r_data); $result = $oRestorePrint->res; echo '还原为数组
Sortie :
显示打印的数据Array( [name] => fdipzone [gender] => male [age] => 18 [profession] => programmer [detail] => Array( [grade] => 1 [addtime] => 2016-10-31 ) ) 还原为数组 array (size=5) 'name' => string 'fdipzone' (length=8) 'gender' => string 'male' (length=4) 'age' => string '18' (length=2) 'profession' => string 'programmer' (length=10) 'detail' => array (size=2) 'grade' => string '1' (length=1) 'addtime' => string '2016-10-31' (length=10)
Adresse de téléchargement du code source : cliquez pour voir
La méthode php print_r peut imprimer et afficher des variables, ce qui rend les variables faciles à comprendre. Si la variable est une chaîne, un entier ou un flottant, la valeur de la variable elle-même sera imprimée. Si la variable est un tableau, les clés et les éléments seront affichés dans un certain format. l'objet est similaire à un tableau. print_r est utilisé pour imprimer de grands tableaux.
PHP ne restaure pas nativement les données imprimées par la méthode print_r dans le tableau d'origine, la méthode suivante a donc été écrite pour restaurer les données traitées par print_r dans le tableau d'origine.
RestorePrint.class.php
<?php/** * 将print_r处理后的数据还原为原始数组 * Date: 2016-10-31 * Author: fdipzone * Ver: 1.0 */class RestorePrint{ // class start public $res = array(); protected $dict = array(); protected $buf = ''; protected $keyname = ''; protected $stack = array(); public function __construct() { $this->stack[] =& $this->res; } public function __call($method, $param){ echo $this->buf .' not defined mehtod:'.$method. ' param:'.implode(',', $param); } public function set($word, $value=''){ if(is_array($word)){ foreach($word as $k=>$v){ $this->set($k, $v); } } $p =& $this->dict; foreach(str_split($word) as $ch){ if(!isset($p[$ch])){ $p[$ch] = array(); } $p =& $p[$ch]; } $p['val'] = $value; return $this; } public function parse($str){ $this->doc = $str; $this->len = strlen($str); $i = 0; while($i < $this->len){ $t = $this->find($this->dict, $i); if($t){ $i = $t; $this->buf = ''; }else{ $this->buf .= $this->doc{$i++}; } } } protected function find(&$p, $i){ if($i >= $this->len){ return $i; } $t = 0; $n = $this->doc{$i}; if(isset($p[$n])){ $t = $this->find($p[$n], $i+1); } if($t){ return $t; } if(isset($p['val'])){ $arr = explode(',', $p['val']); call_user_func_array(array($this, array_shift($arr)), $arr); return $i; } return $t; } protected function group(){ if(!$this->keyname){ return ; } $cnt = count($this->stack)-1; $this->stack[$cnt][$this->keyname] = array(); $this->stack[] =& $this->stack[$cnt][$this->keyname]; $this->keyname = ''; } protected function brackets($c){ $cnt = count($this->stack)-1; switch($c){ case ')': if($this->keyname){ $this->stack[$cnt][$this->keyname] = trim($this->buf); } $this->keyname = ''; array_pop($this->stack); break; case '[': if($this->keyname){ $this->stack[$cnt][$this->keyname] = trim($this->buf); } break; case ']': $this->keyname = $this->buf; break; } $this->buf = ''; } } // class end?>
demo.php
<?phprequire 'RestorePrint.class.php';$print_r_data = <<<TXT Array ( [name] => fdipzone [gender] => male [age] => 18 [profession] => programmer [detail] => Array( [grade] => 1 [addtime] => 2016-10-31 ) ) TXT; // 显示打印的数据echo '显示打印的数据<br>'; echo '<pre class="brush:php;toolbar:false">'.$print_r_data.''; $oRestorePrint = new RestorePrint;$oRestorePrint->set('Array', 'group'); $oRestorePrint->set(' [', 'brackets,['); $oRestorePrint->set('] => ', 'brackets,]'); $oRestorePrint->set(')', 'brackets,)'); $oRestorePrint->parse($print_r_data); $result = $oRestorePrint->res;echo '还原为数组
Sortie :
显示打印的数据Array( [name] => fdipzone [gender] => male [age] => 18 [profession] => programmer [detail] => Array( [grade] => 1 [addtime] => 2016-10-31 ) ) 还原为数组array (size=5) 'name' => string 'fdipzone' (length=8) 'gender' => string 'male' (length=4) 'age' => string '18' (length=2) 'profession' => string 'programmer' (length=10) 'detail' => array (size=2) 'grade' => string '1' (length=1) 'addtime' => string '2016-10-31' (length=10)
Ce qui précède est le contenu Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !