如何在CSS 樣式表中執行PHP 指令
問題:
我需要實作🎜>問題:
<link href="css/<?php echo $theme; ?>/styles.css" rel="stylesheet" type="text/css" />
body{ background-image:url(../../images/<?php echo $theme.'/'.$background; ?>);}我需要實作🎜>問題:
<?php header ("Content-type: text/css"); ?>我需要實作🎜>問題:
我需要實作我的CSS 樣式表中的PHP程式碼用於顯示資料庫產生的背景image:
答案:
要在CSS 中成功運行PHP程式碼,請遵循以下步驟步驟:
<link href="css/<?php echo $theme; ?>/styles.css" rel="stylesheet" type="text/css" />
將檔案副檔名變更為.php:將CSS檔案的副檔名變更為.php,以便伺服器可以執行PHP命令。
<link href="css/<?php echo $theme; ?>/styles.php" rel="stylesheet" type="text/css" />
至:
<?php header ("Content-type: text/css"); ?>
<?php echo $var; ?>在開頭您的.php 檔案中,包含以下標頭:
<?=$var; ?>
為了方便起見,請使用縮短的 PHP echo語法:
更改:更改為:以上是如何在 CSS 樣式表中成功執行 PHP 程式碼以動態顯示圖片?的詳細內容。更多資訊請關注PHP中文網其他相關文章!