file_get_content()函数的简单基本相对路径

时间:2016-09-29 12:33:38

标签: php relative

我正在尝试使用screen.css标记输出我的<style>文件内容。

我认为这很容易,但相对路径不起作用?

查看我的代码......

<?php printf('<style type="text/css">%s</style>', file_get_contents('css/screen.css?v='.rand()) ); ?> 

所以理论上,这段代码在我的index.php中,相对路径应该找到我的php文件本地的css文件夹?但是我得到了这个错误...

Warning: file_get_contents(./css/screen.css?v=1836240868): failed to open stream: No such file or directory in index.php on line 18
');

请参阅我的文件夹我的结构......

enter image description here

如果有人能给我一些建议或帮助,那就太棒了。

1 个答案:

答案 0 :(得分:0)

Php代码



define("BASE_URI", "http://example.com/");




HTML代码


    <link href="<?php echo BASE_URI;?>/folder/style.css" rel="stylesheet" />