我试图在我的工作中第一次通过 PHP 生成 CSS 来加载它。它现在不起作用。
所以我的PHP端在输出数据方面是正确的,输出完美,但也许我在标题或其他方面有问题?
<?php
$p = realpath(dirname(__FILE__));
define('ROOT_SITE_PATH', $p);
include(ROOT_SITE_PATH . '/includes/functions.php'); # Global functions.
include(ROOT_SITE_PATH. '/includes/init.php'); # Page constants, includes for the app 'n stuff.
$init = new Init();
unset($init);
if(isset($_GET['file'])){
$parts = explode('.', $_GET['file']);
$ext = end($parts);
switch(strtolower($ext)){
case 'css':
header('Content-Type: text/css; charset: UTF-8;');
$file = DIR_STYLES . $parts[0] . '.php';
if(is_file($file)){
include($file);
echo $css;
}
break;
case 'js':
header("Content-Type: text/x-javascript;");
$file = SRC_SCRIPTS . $parts[0] . '.php';
if(is_file($file)){
include($file);
echo $script;
}
break;
}
}
我得到这个输出:sitepath/dynamic_src.php?file=main.css
。看看这个。
在我的服务器上,我正在通过这个 main.css 文件进行测试,该文件似乎没有被浏览器呈现。
<link rel="stylesheet" type="text/css" href="sitepath/dynamic_src.php?file=main.css"/>