【PHP】多重クラスの配列化



PHPではライブラリの使用やXMLの読み込みを行った時など多重クラスで返ってくる事があります。

ただ、この状態で帰ってこられるととても使いづらい・・・
foreachなどで順次、内容を取得することも出来ないので困ります。

なので今回は多重クラスを簡単に配列化する方法の紹介。

// サンプル用変数の作成
$class = new StdClass();

// クラス内変数
$class->class_1 = 'class_1';

// クラス内クラス1 変数有り(多重オブジェクト)
$class->class_2 = new StdClass();
$class->class_2->hoge = 'hoge';
$class->class_2->fuga = 'fuga';
$class->class_2->piyo = 'piyo';

// クラス内クラス2 変数なし(多重オブジェクト)
$class->class_3 = new StdClass();

現状のままだと以下のようにオブジェクトで使用しづらい状態。
object(stdClass)#4499 (3) {
  ["class_1"]=>
  string(7) "class_1"
  ["class_2"]=>
  object(stdClass)#4498 (3) {
    ["hoge"]=>
    string(4) "hoge"
    ["fuga"]=>
    string(4) "fuga"
    ["piyo"]=>
    string(4) "piyo"
  }
  ["class_3"]=>
  object(stdClass)#4505 (0) {
  }
}

get_object_varsを使用する
PHPマニュアル:get_object_vars
var_dump(get_object_vars($class));
これで配列化をしてもらえますが、クラス内部のクラスまでは配列化されなくてまだ使いづらい・・・
array(3) {
  ["class_1"]=>
  string(7) "class_1"
  ["class_2"]=>
  object(stdClass)#4498 (3) {
    ["hoge"]=>
    string(4) "hoge"
    ["fuga"]=>
    string(4) "fuga"
    ["piyo"]=>
    string(4) "piyo"
  }
  ["class_3"]=>
  object(stdClass)#4505 (0) {
  }
}


json化する
json_encodeとjson_decodeを使用してPHP変数→JSON→PHP変数にするときれいな配列になります。
PHPマニュアル:json_encode
PHPマニュアル:json_decode
var_dump(json_decode(json_encode($class), true));
array(3) {
  ["class_1"]=>
  string(7) "class_1"
  ["class_2"]=>
  array(3) {
    ["hoge"]=>
    string(4) "hoge"
    ["fuga"]=>
    string(4) "fuga"
    ["piyo"]=>
    string(4) "piyo"
  }
  ["class_3"]=>
  array(0) {
  }
}

多重クラスを配列化するとforやforeachで内部を回せるのでとてもありがたいです。
再帰的にget_object_varsを行う方法もありますが、それはfanctionを作ったりするのが手間なのでjson化する方法が一番簡単でやりやすいです。


Comments
  1. I really like reading through a post that can make men and women think. Also, thank you for allowing me to comment!

  2. Nice post. I learn something totally new and challenging on websites

  3. I very delighted to find this internet site on bing, just what I was searching for as well saved to fav

  4. naturally like your web site however you need to take a look at the spelling on several of your posts. A number of them are rife with spelling problems and I find it very bothersome to tell the truth on the other hand I will surely come again again.

  5. I’m often to blogging and i really appreciate your content. The article has actually peaks my interest. I’m going to bookmark your web site and maintain checking for brand spanking new information.

  6. I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.

  7. This was beautiful Admin. Thank you for your reflections.

  8. I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.

  9. For the reason that the admin of this site is working, no uncertainty very quickly it will be renowned, due to its quality contents.

  10. I do not even understand how I ended up here, but I assumed this publish used to be great

  11. I truly appreciate your technique of writing a blog. I added it to my bookmark site list and will

  12. I do not even understand how I ended up here, but I assumed this publish used to be great

  13. I truly appreciate your technique of writing a blog. I added it to my bookmark site list and will

  14. Very well presented. Every quote was awesome and thanks for sharing the content. Keep sharing and keep motivating others.

  15. naturally like your web site however you need to take a look at the spelling on several of your posts. A number of them are rife with spelling problems and I find it very bothersome to tell the truth on the other hand I will surely come again again.

  16. Nice post. I learn something totally new and challenging on websites

  17. I really like reading through a post that can make men and women think. Also, thank you for allowing me to comment!

  18. This is really interesting, You’re a very skilled blogger. I’ve joined your feed and look forward to seeking more of your magnificent post. Also, I’ve shared your site in my social networks!

  19. Pretty! This has been a really wonderful post. Many thanks for providing these details.

  20. This is really interesting, You’re a very skilled blogger. I’ve joined your feed and look forward to seeking more of your magnificent post. Also, I’ve shared your site in my social networks!

  21. Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.

  22. very informative articles or reviews at this time.

  23. I very delighted to find this internet site on bing, just what I was searching for as well saved to fav

  24. I really like reading through a post that can make men and women think. Also, thank you for allowing me to comment!

  25. This is really interesting, You’re a very skilled blogger. I’ve joined your feed and look forward to seeking more of your magnificent post. Also, I’ve shared your site in my social networks!

  26. You’re so awesome! I don’t believe I have read a single thing like that before. So great to find someone with some original thoughts on this topic. Really.. thank you for starting this up. This website is something that is needed on the internet, someone with a little originality!

  27. For the reason that the admin of this site is working, no uncertainty very quickly it will be renowned, due to its quality contents.

  28. Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.

  29. I really like reading through a post that can make men and women think. Also, thank you for allowing me to comment!

  30. Awesome! Its genuinely remarkable post, I have got much clear idea regarding from this post

  31. This was beautiful Admin. Thank you for your reflections.

  32. Very well presented. Every quote was awesome and thanks for sharing the content. Keep sharing and keep motivating others.

  33. I appreciate you sharing this blog post. Thanks Again. Cool.

  34. You’re so awesome! I don’t believe I have read a single thing like that before. So great to find someone with some original thoughts on this topic. Really.. thank you for starting this up. This website is something that is needed on the internet, someone with a little originality!

  35. Awesome! Its genuinely remarkable post, I have got much clear idea regarding from this post

  36. I appreciate you sharing this blog post. Thanks Again. Cool.

  37. Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.

  38. I just like the helpful information you provide in your articles

  39. You’re so awesome! I don’t believe I have read a single thing like that before. So great to find someone with some original thoughts on this topic. Really.. thank you for starting this up. This website is something that is needed on the internet, someone with a little originality!

  40. You’re so awesome! I don’t believe I have read a single thing like that before. So great to find someone with some original thoughts on this topic. Really.. thank you for starting this up. This website is something that is needed on the internet, someone with a little originality!

  41. Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.

  42. I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.

  43. You’re so awesome! I don’t believe I have read a single thing like that before. So great to find someone with some original thoughts on this topic. Really.. thank you for starting this up. This website is something that is needed on the internet, someone with a little originality!

  44. I very delighted to find this internet site on bing, just what I was searching for as well saved to fav

  45. This is really interesting, You’re a very skilled blogger. I’ve joined your feed and look forward to seeking more of your magnificent post. Also, I’ve shared your site in my social networks!

  46. I very delighted to find this internet site on bing, just what I was searching for as well saved to fav

  47. Pretty! This has been a really wonderful post. Many thanks for providing these details.

  48. very informative articles or reviews at this time.

  49. I appreciate you sharing this blog post. Thanks Again. Cool.

  50. For the reason that the admin of this site is working, no uncertainty very quickly it will be renowned, due to its quality contents.

  51. I truly appreciate your technique of writing a blog. I added it to my bookmark site list and will

  52. I appreciate you sharing this blog post. Thanks Again. Cool.

  53. For the reason that the admin of this site is working, no uncertainty very quickly it will be renowned, due to its quality contents.

  54. This was beautiful Admin. Thank you for your reflections.

  55. I do not even understand how I ended up here, but I assumed this publish used to be great

  56. Pretty! This has been a really wonderful post. Many thanks for providing these details.

  57. naturally like your web site however you need to take a look at the spelling on several of your posts. A number of them are rife with spelling problems and I find it very bothersome to tell the truth on the other hand I will surely come again again.

  58. I appreciate you sharing this blog post. Thanks Again. Cool.

  59. I’m often to blogging and i really appreciate your content. The article has actually peaks my interest. I’m going to bookmark your web site and maintain checking for brand spanking new information.

  60. Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.

  61. Awesome! Its genuinely remarkable post, I have got much clear idea regarding from this post

  62. Nice post. I learn something totally new and challenging on websites

  63. I truly appreciate your technique of writing a blog. I added it to my bookmark site list and will

  64. There is definately a lot to find out about this subject. I like all the points you made

  65. Pretty! This has been a really wonderful post. Many thanks for providing these details.

  66. Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.

  67. I’m often to blogging and i really appreciate your content. The article has actually peaks my interest. I’m going to bookmark your web site and maintain checking for brand spanking new information.

  68. I like the efforts you have put in this, regards for all the great content.

  69. Your blog post had me hooked from the first sentence.

ufabet911 にコメントする コメントをキャンセル