Guest User

Untitled

a guest
Jul 16th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. $vars = array();
  3. $view = $this->view;
  4. foreach ($view->field as $id => $field) {
  5. $object = new stdClass();
  6. $object->handler = &$view->field[$id];
  7. $vars['fields'][$id] = $object;
  8. }
  9. print_r($vars); // apache crashes
Add Comment
Please, Sign In to add comment