在php中包含保持资源完整的文件

时间:2016-05-05 11:27:24

标签: php include

假设我有

的index.php

<?php include("boxes/boxes.php"); ?>

盒/ boxes.php

<link href="style.css" rel="stylesheet" type="text/css" />

盒/ stylesheet.css中

body{ background-color: yellow; }

样式表不会包含在/index.php中,因为它会在/中查找样式表而不是boxes/。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

你能否明确写入href

<link href="/boxes/stylesheet.css" rel="stylesheet" type="text/css" />

/boxes/stylesheet.css前面的斜杠将告诉链接从域的开头开始。这样它可以在任何地方使用,它仍然可以使用

答案 1 :(得分:0)

提供样式表文件的绝对路径,如下所示

<link href="http://www.example.com/boxes/stylesheet.css" rel="stylesheet" type="text/css" />

这将解决您的问题。