在PHP链接中更改字体样式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在PHP链接中更改字体样式相关的知识,希望对你有一定的参考价值。
虽然我花了一些时间在这上面,但我还是找不到解决办法。点击后,我被要求显示“返回”消息。此消息必须使用与用户单击相同的字体编写。这是我的代码:
<html>
<head>
<title>Example - Changing the font</title>
</head>
<body>
<?php
if (isset($_GET['fontStyle'])){
$font=$_GET['fontStyle'];
unset($_GET);
echo "<a href='Example01.php'>";
echo "<font face=$font>Go back</font>";
echo "</a>";
} else{
echo "<h1>Choose a font style</h1>";
echo "<a href='Example01.php?fontStyle=verdana'>verdana</a><br />";
echo "<a href='Example01.php?fontStyle=arial'>arial</a><br />";
}
?>
</body>
</html>
答案
更改
echo "<font face=$font>Go back</font>";
至
echo "<span style='font-family:".$font.";'>Go back</span>";
另一答案
<font>
标签不是longer supported。使用style
属性和font-family
属性:
if (isset($_GET['fontStyle'])){
$font=$_GET['fontStyle'];
// unset($_GET); // unset $_GET array is not necessary
echo '<a href="Example01.php" style="font-family:'.$font.';">Go back</a>';
} else{
echo "<h1>Choose a font style</h1>";
echo "<a href='Example01.php?fontStyle=verdana'>verdana</a><br />";
echo "<a href='Example01.php?fontStyle=arial'>arial</a><br />";
}
以上是关于在PHP链接中更改字体样式的主要内容,如果未能解决你的问题,请参考以下文章