The function is not looping through all the array elements because after the first array element is processed, your function is 'returning'
return array(
'name' => $name,
'filename' => $jpg,
'ext' => $ext
);
Instead of writing return in each iteration, just assign the results in another array and return that array after the entire parameter array is looped through.
Like this:-
foreach($jpgs as $jpg)
{
$ext = strrchr($jpg, '.');
if($ext !== false)
{
$name = substr($jpg, 0, -strlen($ext));
echo $name."<br />";
echo $jpg."<br />";
echo $ext."<br /><br />";
$value[] = array(
'name' => $name,
'filename' => $jpg,
'ext' => $ext
);
}
}
return $value;