Guest User

Untitled

a guest
Jul 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. 'milestone' => [
  2. 'columns' => array(
  3. "JobDept" => "department",
  4. "JobBranch" => "branch",
  5. "Destination" => "destination",
  6. ),
  7. ],
  8.  
  9. "XML Element Name => Database Column Name"
  10.  
  11. $data = $xml->parse([
  12. 'report' => ['uses' => 'item['.implode(",",$xmlFilters).']', 'default' => null]
  13. ]);
  14.  
  15. 0 => array:3 [▼
  16. "JobDept" => "FEA"
  17. "JobBranch" => "AAL"
  18. "Destination" => "TWTPE"
  19. ]
  20.  
  21. 0 => array:3 [▼
  22. "department" => "FEA"
  23. "branch" => "AAL"
  24. "destination" => "TWTPE"
  25. ]
Add Comment
Please, Sign In to add comment