Advertisement
Guest User

Untitled

a guest
Aug 25th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Array
  2. (
  3. [0] => Array
  4. (
  5. [id] => 1
  6. [parent_id] => 1
  7. [login] => 123
  8. [login_nickname] =>
  9. [password] => 123
  10. [subuser] => 0
  11. [subuser_id] =>
  12. [email] => usersemail@email.com
  13. ),
  14. [1] => Array
  15. (
  16. [id] => 1
  17. [parent_id] => 1
  18. [login] => 123
  19. [login_nickname] =>
  20. [password] => 123
  21. [subuser] => 0
  22. [subuser_id] =>
  23. [email] => anotheruser@email.com
  24. )
  25. )
  26.  
  27. foreach($member_list as $index=>$member){
  28. foreach($member as $key=>$value){
  29. $member_list[$index][$key] = str_replace(array("n", "t", "r"), " ", trim($value));
  30. }
  31. }
  32.  
  33. ini_set('memory_limit','256M')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement