Heim >Backend-Entwicklung >PHP-Tutorial >php 对象转换数组与数组转换对象的例子(图文)

php 对象转换数组与数组转换对象的例子(图文)

WBOY
WBOYOriginal
2016-07-25 09:04:25906Durchsuche
  1. /** bbs.it-home.org */
  2. $array = array('1' => 'one',
  3. '2' => 'two',
  4. '3' => 'three');
  5. $arrayobject = new ArrayObject($array);
  6. var_dump($arrayobject);
  7. $array = array('1' => 'one',
  8. '2' => 'two',
  9. '3' => 'three');
  10. $arrayobject = new ArrayObject($array);
  11. var_dump($arrayobject);
  12. ?>
复制代码

输出结果: object(ArrayObject)#1 (3) { [1]=> string(3) "one" [2]=> string(3) "two" [3]=> string(5) "three" }



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn