在 PHP 中更改字体大小和颜色

Sheeraz Gul 2022年12月21日 2022年5月13日
在 PHP 中更改字体大小和颜色

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 字体大小,第三个是红色字体颜色。

输出:

在 PHP 中更改字体大小和颜色

Author: Sheeraz Gul
Sheeraz Gul avatar Sheeraz Gul avatar

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