PHP get_file_contents没有获取CSS内容

时间:2017-11-02 22:24:59

标签: php

我有以下代码行应该回显我的CSS,但它只是显示什么......

echo file_get_contents('https://wholelifeclinics.com/wp-content/themes/sydney/style.min.css')

有什么想法吗?因为css文件存在,为什么这不起作用是没有意义的。

2 个答案:

答案 0 :(得分:0)

file_get_contents('https://wholelifeclinics.com/wp-content/themes/sydney/style.min.css')本身不会产生任何输出。你可能是其中一个

$css=file_get_contents('https://wholelifeclinics.com/wp-content/themes/sydney/style.min.css');
echo $css;

或只是

echo file_get_contents('https://wholelifeclinics.com/wp-content/themes/sydney/style.min.css');

答案 1 :(得分:0)

从文件中读取内容的有点但正确的方法:

my-command

您可以在运行此脚本的同一台计算机上的案例文件中使用此代码。但在您的情况下,您使用外部文件(托管在另一台计算机上),因此您必须执行以下操作:

$file = 'https://wholelifeclinics.com/wp-content/themes/sydney/style.min.css';
if (file_exists($file) and is_readable($file)) {
  echo file_get_contents($file);
}