在 Symfony 中的 CSS 文件中使用 PHP 变量
我很想在 CSS 文件中使用 PHP 变量,但我不想为每个文件加载加载整个 Symfony 堆栈。 有人有任何最佳实践和/或插件来管理 Symfony 中的 CSS 文件吗?
I'd love to use PHP variables in my CSS files but I don't want to load up the whole Symfony stack for each file load. Any one have any best practices and/or plugins to manage their CSS files in Symfony?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
但你不需要完整的 symfony 堆栈(除非你需要一些内部 symfony 状态/变量)。
你只需使用
,然后你就可以在你的 css 中使用 php 了。 您可以在 php.ini 中使用 header 添加适当的标头(文本/css)。
but you dont need full symfony stack for that ( except if you need some internal symfony state / variable ).
You just use
and then you can use php inside your css. you could add appropriate headers (text/css) with header in php.
这是一个尝试管理和/或组合您的资源的好插件:
http://www.symfony -project.org/plugins/sfCombinePlugin
这是他们的描述:
另外,由于它是经过编译的,只要变量保留在同一文件中,您就可以使用简单的 PHP。
Here's one good Plugin that tries to manage and/or combine your assets:
http://www.symfony-project.org/plugins/sfCombinePlugin
Here's their description:
Also, since it's compiled, you may be able to use simple PHP as long as the variables stick within the same file.