Symfony中的URL路径

时间:2013-10-14 20:15:51

标签: symfony filepath

需要在文本文件中保存数据。无法获得正确的文本文件路径。请建议。

现在,我正在尝试使用此代码$file_url= "{{ asset('/temp_files/calender.txt') }}"; $ourFileHandle = fopen($file_url, 'w') or die("can't open file1");

但没有得到确切的路径。

1 个答案:

答案 0 :(得分:0)

使用templating.helper.assets,如此

$this->container->get('templating.helper.assets')->getUrl('bundles/somename/other/calendar.txt')

您的web / bundles文件夹中存在bundles / somename。如果web / bundles文件夹中没有任何内容,请运行以下命令:

php app/console assets:install ./web --symlink

上面列出的其他文件夹将是您在捆绑包的Res​​ources / public文件夹中创建的文件夹。