需要将数据保存在文本文件中。无法获得正确的文本文件路径。请建议。
现在,我正在尝试使用此代码$file_url= "{{ asset('/temp_files/calender.txt') }}";
$ourFileHandle = fopen($file_url, 'w') or die("can't open file1");
但没有得到确切的路径。
使用 template.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
上面列出的另一个文件夹将是您在捆绑包的 Resources/public 文件夹中创建的文件夹。