Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- foreach ($arr as $arry) {
- if (is_array($arry["children"]) && (($arry["children"]) != null)) {
- $i = 0;
- while (true) {
- if ($arry["name"] == "errorparameters[$i]") {
- $this->ErrorParameters[$i] = new ErrorParameterType();
- $this->ErrorParameters[$i]->init($arry["children"]);
- } else {
- break;
- }
- $i++;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment