gpt4 book ai didi

php - 如何在 PHP 中以不同方式显示静态文本和动态文本(由变量生成)?

转载 作者:太空宇宙 更新时间:2023-11-04 00:33:18 25 4
gpt4 key购买 nike

HTML 文件由 PHP 文件生成。一般来说,用户从 HTML 文件中看到的内容可以分为两部分,一部分是静态的;另一部分是动态的,这部分由 PHP 文件中的变量表示。

例如:

$html=<<<eod
$title<br/>
Total Price:$row[column1]
Quota:$row[column2]
<pre>$row[column3]</pre>
Balance:<label class="price">$row[column4]</label>
Current Unit_price:<span class="price">$row[column5]</span>
$row[column6] readers are expected. Announcer:$row[column6]
<hr>
eod;
echo $html;

Total Price: Quota: Balance: Current Unit_price: readers are expected.Announcers:

是一个部分,是静态的;

$row[column1]$row[column2]$row[column3]$row[column4]$row[column5]$row[column6]

是另一部分,文本是由变量生成的,文本的内容是动态的。我知道我可以通过用 <span>, <div>, <label>, 包装它们来做到这一点等。但是有没有更好的方法可以不用任何标记呢?显示时如何区分两者?如何分别控制两个部分的颜色或字体?有没有一种优雅的方式来做到这一点?

最佳答案

您可以使用 CSS 控制它。将您的动态内容包装在具有特定类的 span 或 div 中,然后根据您的喜好设置样式。简单示例:

<table>
<thead>
<tr>
<th>Item</tr>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td><!-- dynamic content --></td>
<td><!-- dynamic content --></td>
<td><!-- dynamic content --></td>
</tr>
<tr>
<td><!-- dynamic content --></td>
<td><!-- dynamic content --></td>
<td><!-- dynamic content --></td>
</tr>
</tbody>
</table>

在这里你甚至不需要另一个类:

thead th { background: #CCC; }
tbody td { background: yellow; }

这里是 <tbody>包含所有动态内容,因此很容易隔离。另一个例子:

<p>The total price is <span class="price dynamic">$19.95</span>.</p>

与:

span.dynamic { color: red; }

等等。

关于php - 如何在 PHP 中以不同方式显示静态文本和动态文本(由变量生成)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1806783/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com