Guest User

Untitled

a guest
Jul 12th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2. if($this->request->post('froles') == NULL)
  3. {
  4.         $froles = array();
  5. }
  6. else
  7. {
  8.         $froles = $this->request->post('froles');
  9. }
  10.  
  11. can turn into:
  12.  
  13. $froles = $this->request->post('froles', array());
Add Comment
Please, Sign In to add comment