HosipLan

Untitled

Oct 4th, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. foreach ($arr as $arry) {
  2.     if (is_array($arry["children"]) && (($arry["children"]) != null)) {
  3.         $i = 0;
  4.         while (true) {
  5.             if ($arry["name"] == "errorparameters[$i]") {
  6.                 $this->ErrorParameters[$i] = new ErrorParameterType();
  7.                 $this->ErrorParameters[$i]->init($arry["children"]);
  8.             } else {
  9.                 break;
  10.             }
  11.             $i++;
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment