使用 PHP 作为 CSS 文件?

发布于 2025-01-07 02:49:16 字数 74 浏览 0 评论 0原文

我将如何使用 PHP 作为 CSS 文件。我刚刚将其作为普通的 css 文件包含在内,但它无法在 Google Chrome 中工作。

How would I go about using PHP as a CSS file. I have just included it as a normal css file, but it fails to work in Google Chrome.

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

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

发布评论

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

评论(2

小忆控 2025-01-14 02:49:16

您必须告诉浏览器它是 CSS 文件而不是 HTML 文件,在任何输出之前写入以下内容:

<?php header("Content-type: text/css"); ?>

请参阅:
http://www.barelyfitz.com/projects/csscolor/

You have to tell the browser that it is a CSS-file and not a HTML-file, write the following before any output:

<?php header("Content-type: text/css"); ?>

See:
http://www.barelyfitz.com/projects/csscolor/

爺獨霸怡葒院 2025-01-14 02:49:16

尝试添加

<?php header("Content-type: text/css"); ?>

stylesheet.php 的第一行

Try adding

<?php header("Content-type: text/css"); ?>

in first line of your stylesheet.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文