Thanks for viewing, just need some advice if this is the proper way of taking a string full of image links separated as commas and turning them into images but separating the list to show on different parts of the website.
My code
<?php
//the array, will be grabbing from database soon
$string = "main.jpg,extra_img_1.jpg,extra_img_2.jpg,extra_img_3.jpg,extra_img_4.jpg,extra_img_5.jpg";
//explode the whole array
$array = explode(',',$string);
//remaking the list turning it back into an array
$oldstring = '<li>'.implode('</li><li>',$array).'</li>';
// removing the first string in the commad array
array_shift($array);
//turning it back into an array without the first listed item
$newstring = '<li>'.implode('</li><li>',$array).'</li>';
//showing the old string in a listed format
echo $oldstring;
echo '<hr>';
// showing the first item in the old string
echo '<li>'.explode(',', $string)[0].'</li>';
echo '<hr>';
//once its shifted, i want to reshow the list
echo $newstring;
?>
Thanks for the upcoming advice.
I think your solution is pretty straightforward without much that is unnecessary. Note however, that
array_shift()
returns the shifted element. There is no need toexplode()[0]
it a second time:Personally, I would probably just loop over the elements: