Guest User

Untitled

a guest
Apr 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2. foreach ($this->phpsession->get(null,'file_names') as $key => $filename) {
  3. echo $filename; // echoes sixty3.jpg, then forty3.jpg
  4. $name = explode($filename, '.');
  5. print_r($name); // echoes ( [0] => . ) then ( [0] => . )
  6. }
Add Comment
Please, Sign In to add comment