我globals.php
网站上的每个文件中都包含一个文件。我想在这个文件中包含一个CSS
文件globals.css
.
问题是,如果我添加 CSSglobals.php
然后将其包含在所有文件中,我会收到一些错误,例如:
Warning: session_start() [function.session-start]:
Cannot send session cache limiter - headers already sent (output started at /...)
in /... on line 4
或使用时
header('Location: ....');
ob_start
有没有比在同一个文件的顶部globals.php
和ob_end_flush
底部使用更好更合适的解决方案,或者这种方法是正确的操作方式?
全局变量.php
<?php
ob_start();
//some costants and functions
?>
<head>
<link href="/css/globals.css" rel="stylesheet" type="text/css">
</head>
<?php
ob_end_flush();
?>