Symfony2 - 在 PHP 模板中使用 CSS 资源

发布于 2024-12-08 19:49:42 字数 349 浏览 0 评论 0原文

我已经使用以下方式安装了我的资产:

php app/console assets:install web/

并且公共资源已毫无问题地移至 Web 文件夹。

我现在想从我的 php 视图脚本访问这些资源,但只能找到 twig 示例。谁能告诉我如何

<link rel="stylesheet" href="{{ asset('bundles/acmedemo/css/demo.css') }}" type="text/css" media="all" />

在 php 视图脚本中完成这个...?

谢谢!

I have installed my assets using:

php app/console assets:install web/

and the public resources have been moved to the web folder without problems.

I now want to access these assets from my php view scripts, but can only find twig examples. Can anyone show me how to accomplish this....

<link rel="stylesheet" href="{{ asset('bundles/acmedemo/css/demo.css') }}" type="text/css" media="all" />

in a php view script??

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难如初 2024-12-15 19:49:42
href="<?php echo $view['assets']->getUrl('bundles/acmedemo/css/demo.css') ?>"
href="<?php echo $view['assets']->getUrl('bundles/acmedemo/css/demo.css') ?>"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文