Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $data = array(
  2. 'slug' => array(
  3. 'slug_1',
  4. 'slug_2',
  5. 'slug_3'
  6. ),
  7. 'title' => array(
  8. 'title_1',
  9. 'title_2',
  10. 'title_3',
  11. )
  12. );
  13.  
  14. $data = array(
  15. array('slug' => 'slug_1', 'title' => 'title_1'),
  16. array('slug' => 'slug_2', 'title' => 'title_2'),
  17. array('slug' => 'slug_3', 'title' => 'title_3'),
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement