《PHP編程:php將print_r處理后的數據還原為原始數組的解決方法》要點:
本文介紹了PHP編程:php將print_r處理后的數據還原為原始數組的解決方法,希望對您有用。如果有疑問,可以聯系我們。
PHP實例PHP print_r方法可以把變量打印顯示,使變量易于理解.如果變量是string,integer或float,將打印變量值本身,如果變量是array,將會按照一定格式顯示鍵和元素.object與數組類似.print_r用于打印數組較多.
PHP實例php原生沒有把print_r方法打印后的數據還原為原始數組,因此寫了下面這個方法,實現將print_r處理后的數據還原為原始數組.
PHP實例RestorePrint.class.php
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
?>
PHP實例demo.php
PHP實例
<?php
require '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>'.$print_r_data.'</pre>';
$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 '還原為數組<br>';
var_dump($result);
?>
PHP實例輸出:
PHP實例顯示打印的數據
PHP實例Array
(
??? [name] => fdipzone
??? [gender] => male
??? [age] => 18
??? [profession] => programmer
??? [detail] => Array(
??????? [grade] => 1
??????? [addtime] => 2016-10-31
??? )
)
PHP實例還原為數組
PHP實例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)
PHP實例以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持維易PHP.