PHP文件的CSS背景图片

时间:2017-02-15 17:08:39

标签: php css

我正在尝试使用像背景这样的PHP文件在CSS中设置背景:

url('images/header-pics/display_header-pics.php') no-repeat;

我使用时可以使用:

<?php
$img = "3.png";
header ('content-type: image/png');
readfile($img);
?>

但是如果我添加一个条件语句,则不会返回任何内容。 我的代码是:

<?php
if(is_single() || is_archive())
    {
        $imagePath = "3.png";
    }
    elseif(is_home())
    {
        $imagePath = "2.png";
    }
    else
    {
        $imagePath = "1.png";
    }

    header ('content-type: image/png');
    readfile($imagePath);
?>

0 个答案:

没有答案