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

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.