Advertisement
pushrbx

Untitled

Feb 24th, 2014
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. $datasheets = ItJsonDecoder::decode($f,
  2.     function(&$stack, $endAr = false)
  3.     {
  4.         /*
  5.          * stack array inner index:
  6.          * 1,0 -> genre
  7.          * 1,1 -> Songs (just anime, this vanquishes when its not)
  8.          * 1,2 -> Raw Data (skip)
  9.          *
  10.          */
  11.         $data = array(
  12.                 'Node' => array(
  13.                         'user_id' => 1
  14.                 ),
  15.                 'Datasheet' => array(
  16.                         'Contributor' => array()
  17.                 ),
  18.                 'Taxonomy' => array(),
  19.                 'Character' => array()
  20.         );
  21.        
  22.         $this->Node->create();
  23.         //$ds = $stack[0][0];
  24.         // tobb retegu mindegyik
  25.         Debugger::log($stack, 0);
  26.        
  27.         if($this->counter != 40)
  28.             $this->counter++;
  29.         else
  30.             exit();
  31.     },
  32.     function($key, $startAr = false)
  33.     {
  34.         if($startAr)
  35.         {
  36.             Debugger::log('Array start. Key: ' . $key, 0);
  37.         }
  38.     }
  39. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement