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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵