Guest User

Untitled

a guest
Jun 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * @author Andres Galindo
  5. * @copyright 2009
  6. */
  7.  
  8. $dir = '/foo/';
  9. $dir = (array)$dir;
  10. print_r($dir);
  11.  
  12. /** Outputs
  13. * Array ( [0] => /foo/ )
  14. */
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment