array_replace.phpt 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. --TEST--
  2. Test array_replace and array_replace_recursive
  3. --FILE--
  4. <?php
  5. $array1 = array(
  6. 0 => 'dontclobber',
  7. '1' => 'unclobbered',
  8. 'test2' => 0.0,
  9. 'test3' => array(
  10. 'testarray2' => true,
  11. 1 => array(
  12. 'testsubarray1' => 'dontclobber2',
  13. 'testsubarray2' => 'dontclobber3',
  14. ),
  15. ),
  16. );
  17. $array2 = array(
  18. 1 => 'clobbered',
  19. 'test3' => array(
  20. 'testarray2' => false,
  21. ),
  22. 'test4' => array(
  23. 'clobbered3' => array(0, 1, 2),
  24. ),
  25. );
  26. $array3 = array(array(array(array())));
  27. $array4 = array();
  28. $array4[] = &$array4;
  29. echo " -- Testing array_replace() --\n";
  30. $data = array_replace($array1, $array2);
  31. var_dump($data);
  32. echo " -- Testing array_replace_recursive() --\n";
  33. $data = array_replace_recursive($array1, $array2);
  34. var_dump($data);
  35. echo " -- Testing array_replace_recursive() w/ endless recusrsion --\n";
  36. $data = array_replace_recursive($array3, $array4);
  37. var_dump($data);
  38. ?>
  39. --EXPECTF--
  40. -- Testing array_replace() --
  41. array(5) {
  42. [0]=>
  43. string(11) "dontclobber"
  44. [1]=>
  45. string(9) "clobbered"
  46. ["test2"]=>
  47. float(0)
  48. ["test3"]=>
  49. array(1) {
  50. ["testarray2"]=>
  51. bool(false)
  52. }
  53. ["test4"]=>
  54. array(1) {
  55. ["clobbered3"]=>
  56. array(3) {
  57. [0]=>
  58. int(0)
  59. [1]=>
  60. int(1)
  61. [2]=>
  62. int(2)
  63. }
  64. }
  65. }
  66. -- Testing array_replace_recursive() --
  67. array(5) {
  68. [0]=>
  69. string(11) "dontclobber"
  70. [1]=>
  71. string(9) "clobbered"
  72. ["test2"]=>
  73. float(0)
  74. ["test3"]=>
  75. array(2) {
  76. ["testarray2"]=>
  77. bool(false)
  78. [1]=>
  79. array(2) {
  80. ["testsubarray1"]=>
  81. string(12) "dontclobber2"
  82. ["testsubarray2"]=>
  83. string(12) "dontclobber3"
  84. }
  85. }
  86. ["test4"]=>
  87. array(1) {
  88. ["clobbered3"]=>
  89. array(3) {
  90. [0]=>
  91. int(0)
  92. [1]=>
  93. int(1)
  94. [2]=>
  95. int(2)
  96. }
  97. }
  98. }
  99. -- Testing array_replace_recursive() w/ endless recusrsion --
  100. Warning: array_replace_recursive(): recursion detected in %s on line %d
  101. array(1) {
  102. [0]=>
  103. array(1) {
  104. [0]=>
  105. array(1) {
  106. [0]=>
  107. array(0) {
  108. }
  109. }
  110. }
  111. }