Laravel获取相对于公共而不是root的路径?

时间:2014-03-16 13:12:18

标签: php path laravel-4

我想将所有图片路径存储在$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,但我发现这太糟糕了。有更好的方法吗?

0 个答案:

没有答案