我想将所有图片路径存储在$images
变量中,但相对于public
目录而不是app root。
$images = glob('public/images/*.png'); //this works fine
//however the src would be "localhost:8000/public/images/flower.png"
//instead of "localhost:8000/images/flower.png"
foreach $images as $image
<img src="$image">
我使用过public_path()
,但这显然是错误的,因为它会获得完整的路径。显而易见的解决方案是修剪每个图像src字符串的public
,但我发现这太糟糕了。有更好的方法吗?