Home >Backend Development >PHP Tutorial >Methods for converting php objects and arrays to each other, converting php arrays to each other_PHP tutorial

Methods for converting php objects and arrays to each other, converting php arrays to each other_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:54:01977browse

How to convert php objects and arrays to each other, and php arrays to convert each other

The examples in this article describe the methods of converting php objects and arrays to each other. Share it with everyone for your reference. The specific analysis is as follows:

Here are two functions for converting php anonymous objects and arrays. The code is as follows:

function array2object($array) {
  if (is_array($array)) {
    $obj = new StdClass();
    foreach ($array as $key => $val){
      $obj->$key = $val;
    }
  }
  else { $obj = $array; }
  return $obj;
}
function object2array($object) {
  if (is_object($object)) {
    foreach ($object as $key => $value) {
      $array[$key] = $value;
    }
  }
  else {
    $array = $object;
  }
  return $array;
}

Usage examples are as follows:

$array = array('foo' => 'bar','one' => 'two','three' => 'four');
$obj = array2object($array);
print $obj->one; // output's "two"
$arr = object2array($obj);
print $arr['foo']; // output's bar

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/998574.htmlTechArticleHow to convert PHP objects and arrays to each other, and how to convert PHP arrays to each other. This article describes how to convert PHP objects and arrays to each other. method. Share it with everyone for your reference. The specific analysis is as follows:...
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