Home >Backend Development >PHP Tutorial >PHP数组、对象的变换

PHP数组、对象的变换

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 10:55:22819browse

PHP数组、对象的转换
PHP多维数组、对象的转换Array2object and Object2array
August 4, 2009 – 9:51 pm

function object2array($object) {
if (is_object($object) || is_array($object)) {
foreach ($object as $key => $value) {
print “$key\r\n”;
$array[$key] = $this->object2array($value);
}
}else {
$array = $object;
}
return $array;
}

function array2object($arrGiven){
//create empty class
$objResult=new stdClass();

foreach ($arrLinklist as $key => $value){
//recursive call for multidimensional arrays
if(is_array($value)) $value=array2object($value);

$objResult->{$key}=$value;
}
return $objResult;
}


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