Guest User

Untitled

a guest
Oct 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $list_of_stuff = array(
  2.  
  3. "item_1" => array(
  4. "col_name" => "name",
  5. "formatter" => function($value) {
  6. // Do formatting
  7. return $value;
  8. }
  9. ),
  10.  
  11. "item_2" => array(
  12. "col_name" => "name",
  13. "formatter" => function($value) {
  14. // Do formatting
  15. return $value;
  16. }
  17. )
  18.  
  19. )
Add Comment
Please, Sign In to add comment