在 PHP 中更改字型大小和顏色
Sheeraz Gul
2022年12月21日
2022年5月13日
PHP 沒有用於更改字型大小或顏色的內建功能。我們可以在 PHP 中使用 HTML 和 CSS 來更改字型大小和顏色。
本教程演示如何使用 PHP 更改字型大小和顏色。
使用 PHP 更改字型大小和顏色
我們可以使用 CSS 回顯 HTML 標籤來更改文字的字型大小和顏色。
例子:
<?php
$string= "Welcome! This page doesn't exist!";
echo $string."<br>";
//Change the fontsize using PHP, HTML and css through echo
echo '<span style="font-size: 50px;"> ' . $string. ', <a href="something.php">New Page</a></span>';
//Change the font color using PHP, HTML and css through echo
echo "<br>";
echo '<span style="color: red; font-size: 50px;"> ' . $string. ', <a href="something.php">New Page</a></span>';
?>
上面的程式碼列印了三個字串。一個是原始大小和顏色,第二個是 50px
字型大小,第三個是紅色字型顏色。
輸出:
Author: Sheeraz Gul
Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.
LinkedIn Facebook