我已将图像保存在存储器中的文件中。我想使用控制器中的exec命令将文件保存到阵列中,然后将阵列传递到刀片中。有什么办法吗?
答案 0 :(得分:0)
$images= [];
// $filesInFolder = \File::files('images'); getting files from the folder
$files = file_get_contents( 'filename' ); // replace here the filename with you full path of the file
foreach($files as $path)
{
$images[] = pathinfo($path);
}
然后,您可以在刀片中传递图像/文件。