Guest User

Untitled

a guest
Dec 4th, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $dot = function($key) {
  4.     return function($arr) use ($key) {
  5.         return $arr[$key];
  6.     };
  7. };
  8.  
  9. $l_id = $dot('l_id');
  10. $p_id = $dot('p_id');
  11.  
  12. return json_encode(array(
  13.     'v' => $l_id($records),
  14.     'f'=> $p_id($records);
  15. ));
Advertisement
Add Comment
Please, Sign In to add comment