duankezong4064 2017-08-23 14:16
浏览 65
已采纳

Symfony:从web文件夹中获取控制器中的文件

I want to get pdf file from web folder in controller, but can't figure out how to do it.

I've try to get path like this

// 1
$file = __DIR__ . '/../../../../web/1.pdf';  

// 2
$file = $this->get('kernel')->getRootDir().'\..\web\1.pdf';

// 3
$isSecure = $request->isSecure() ? 'https://' : 'http://';
$file = $isSecure . $request->getHost() . $this->container->get('assets.packages')->getUrl('1.pdf');

and then use file controller helper but it didn't work.

How can I get that file from public directory?

  • 写回答

1条回答 默认 最新

  • douchuang4181 2017-08-23 14:24
    关注

    Try this -

    Append this to autoload.php

    define('APPLICATION_PATH', realpath(__DIR__) . '/');
    define('WEB_PATH',  APPLICATION_PATH . '../web/');
    

    also you can add another folders

    Then

    file_get_content(WEB_PATH . 'your_file.pdf');
    

    Another way -

    $path = $this->getParameter('dir.downloads');
    

    But don't forget to declare it on parameters.yml like this

    parameters:
        ....
        dir.downloads: var/www (your folder)
        ....
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

    报告相同问题?

    悬赏问题

    • ¥15 要求编写稀疏矩阵A的转置矩阵的算法
    • ¥15 编写满足以下要求的停车场管理程序,设停车场只有一个可停放n辆车的狭窄通道且只有一个大门可供车辆进出。
    • ¥20 powerbulider 导入excel文件,显示不完整
    • ¥15 用keil调试程序保证结果进行led相关闪烁
    • ¥15 paddle训练自己的数据loss降不下去
    • ¥20 用matlab的pdetool解决以下三个问题
    • ¥15 单个福来轮的平衡与侧向滑动是如何做到的?
    • ¥15 嵌入式Linux固件,能直接告诉我crc32校验的区域在哪不,内核的校验我已经找到了,uboot没有
    • ¥20 h3c静态路要求有详细过程
    • ¥15 调制识别中输入为时频图,星座图,眼图等