fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $string = "../images/box1/IMG_3158.JPG../images/box1/IMG_3161.JPG../images/box1/IMG_3163.JPG../images/box1/IMG_3158.JPG../images/box1/IMG_3161.JPG../images/box1/IMG_3163.JPG";
  5. $file_paths = explode('..', $string);
  6. var_dump($file_paths);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
array(7) {
  [0]=>
  string(0) ""
  [1]=>
  string(25) "/images/box1/IMG_3158.JPG"
  [2]=>
  string(25) "/images/box1/IMG_3161.JPG"
  [3]=>
  string(25) "/images/box1/IMG_3163.JPG"
  [4]=>
  string(25) "/images/box1/IMG_3158.JPG"
  [5]=>
  string(25) "/images/box1/IMG_3161.JPG"
  [6]=>
  string(25) "/images/box1/IMG_3163.JPG"
}