php-如何回应'得到"格式化?

时间:2014-10-29 13:38:09

标签: php

我在php中有这样的代码

echo  get($contents,'<plaintext>','</plaintext>') ;
它给了我简单的纯文本。 现在我想通过增加字体大小来格式化这个echo文本 所以我试试

 echo "<div style ='font:30px  Arial,tahoma,sans-serif;color:#555'>get($contents,'<plaintext>','</plaintext>') </div>";

但它不工作怎么做? 我通过做更多的实验尝试这个,但没有任何工作。 请帮我解决这个问题

1 个答案:

答案 0 :(得分:1)

您需要在字符串中附加函数。就像这样:

echo "<div style ='font:30px  Arial,tahoma,sans-serif;color:#555'>" . get($contents,'<plaintext>','</plaintext>') . "</div>";