给我回声和白色的文字,我如何给文字添加蓝色,例如
<?php
$testo = file_get_contents('testi.txt');
echo $testo;
?>
txt文件由许多链接组成,例如此示例
<a href='https://www.example.com/playlist/film1.mp4' target='blank'>Example text1</a><br/>
答案 0 :(得分:1)
使用下面代码希望它能帮到你
<?php
$testo = file_get_contents('testi.txt');
echo "<p style=\"color:#000\">".$testo."</p>";
?>
答案 1 :(得分:1)
此处不需要php
,请使用css
:
a:link { color:#0000FF; text-decoration:none; font-weight:normal; }
a:visited { color: #0000FF; text-decoration:none; font-weight:normal; }
a:hover { color: #0000FF; text-decoration:underline; font-weight:normal; }
a:active { color: #0000FF; text-decoration:none; font-weight:normal; }
根据OP的评论更新:
有several ways to add css
to your file,为简单起见,这是一个例子:
<?php
$links = file_get_contents("links_from_text_add_css.txt");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
a:link { color:#0000FF; text-decoration:none; font-weight:normal; }
a:visited { color: #0000FF; text-decoration:none; font-weight:normal; }
a:hover { color: #0000FF; text-decoration:underline; font-weight:normal; }
a:active { color: #0000FF; text-decoration:none; font-weight:normal; }
</style>
</head>
<body>
<?=$links?>
</body>
</html>
答案 2 :(得分:0)
<?php
$var = "test";
echo "<p style='color:#AFA;'>" . $var . "</>";
你去了