0

I have this loop:

$dir = 'url/dir/dir/'; 
$images_array = glob($dir.'*.jpg'); 
foreach ($images_array as $image) {
     $image = str_replace($dir, '', $image);   
}  

I just want to save the $image variables into a new array. How is this possible?

1

1 Answer 1

4
$dir = 'url/dir/dir/'; 
$images_array = glob($dir.'*.jpg'); 

$images = array();

foreach ($images_array as $image) {
     $images[] = str_replace($dir, '', $image);   
}

var_dump($images);
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.