作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑:
简短地说:有没有办法调用 $kernel->getRootDir();从 Twig 扩展中?或者可能来自 DI 容器?
原问题:
我尝试使用 Imagine 在服务器上缩放图像。一切正常,因为我没有尝试通过命令行触发渲染:
在这种情况下,似乎设置了错误的路径 - 我收到错误消息:
[Twig_Error_Runtime]
An exception has been thrown during the rendering of a template ("File ../web/documents/4f59ef3f76e74_test3.jpg doesn't exist") in "....:detail.html.twig" at line 72.
public function thumbnail($path,$width,$maxHeight=0,$alt="",$absolute=false){
/* @var $imagine \Imagine\Gd\Imagine */
$imagine = $this->container->get('imagine');
//$box = new \Imagine\Image\Box($width, $height);
/* @var $image \Imagine\Image\ImageInterface */
$image = $imagine->open("../web/".$path);
...
$image = $imagine->open($path);
最佳答案
哈——找到了!这将检索 web 文件夹的绝对系统文件路径:
$webRoot = $this->container->get('kernel')->getRootDir()."/../web";
关于Symfony2 : How to set the root path in a Symfony CLI command,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9634497/
我是一名优秀的程序员,十分优秀!