Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. Proslo pole validaci - obsahuje vsechny povinne polozky?
  2. bool(false)
  3.  
  4. Seznam chyb - tedy seznam prebyvajicich a chybejicich polozek:
  5. Array
  6. (
  7. [0] => Array
  8. (
  9. [type] => missing_item
  10. [key] => lamp_settings
  11. [path] =>
  12. [value] =>
  13. )
  14.  
  15. [1] => Array
  16. (
  17. [type] => missing_item
  18. [key] => lamp_calibration
  19. [path] =>
  20. [value] =>
  21. )
  22.  
  23. [2] => Array
  24. (
  25. [type] => extra_item
  26. [key] => lamp_hours_offset
  27. [path] => /
  28. [value] => 0
  29. )
  30.  
  31. [3] => Array
  32. (
  33. [type] => extra_item
  34. [key] => top
  35. [path] => /projector_resolution/
  36. [value] => 50
  37. )
  38.  
  39. [4] => Array
  40. (
  41. [type] => extra_item
  42. [key] => wifi_settings
  43. [path] => /
  44. [value] => Array
  45. (
  46. [SSID] => lumitrix
  47. [password] => lol
  48. )
  49.  
  50. )
  51.  
  52. [5] => Array
  53. (
  54. [type] => missing_item
  55. [key] => item2
  56. [path] => /nested_array/
  57. [value] =>
  58. )
  59.  
  60. [6] => Array
  61. (
  62. [type] => missing_item
  63. [key] => item3
  64. [path] => /nested_array/very_nested_array/
  65. [value] =>
  66. )
  67.  
  68. [7] => Array
  69. (
  70. [type] => extra_item
  71. [key] => item4
  72. [path] => /nested_array/very_nested_array/
  73. [value] => 400
  74. )
  75.  
  76. [8] => Array
  77. (
  78. [type] => no_array_item
  79. [key] => weird_array
  80. [path] => /
  81. [value] => 5
  82. )
  83.  
  84. [9] => Array
  85. (
  86. [type] => missing_item
  87. [key] => test
  88. [path] => /weird_array/
  89. [value] =>
  90. )
  91.  
  92. )
  93.  
  94. Procistene pole - obsahuje pouze povinne polozky:
  95. Array
  96. (
  97. [lamp_hours] => 1500
  98. [next_projection_id] =>
  99. [projector_resolution] => Array
  100. (
  101. [width] => 1920
  102. [height] => 1080
  103. )
  104.  
  105. [projector_top_left] => Array
  106. (
  107. [top] => 0
  108. [left] => 1024
  109. )
  110.  
  111. [nested_array] => Array
  112. (
  113. [item1] => 100
  114. [very_nested_array] => Array
  115. (
  116. [item1] => 100
  117. [item2] => 200
  118. )
  119.  
  120. )
  121.  
  122. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement