使用 css 使用变量的样式 php 文本

Style php text which uses variables using css

我正在为 TeamsSpeak 服务器开发一个网站,我想为使用 php 显示的文本设置样式:

echo "Welcome: ".ucwords($name).". IP of our server is: ".ucwords($ip)." , and port is: ".ucwords($port)."<br>";

我想为整个文本设置样式。我尝试添加标签,例如

echo <div class="welcome_msg">"Welcome: ".ucwords($name).". IP of our server is: ".ucwords($ip)." , and port is: ".ucwords($port)."<br>"</div>;

显示错误:解析错误:语法错误,C:\xampp\htdocs\index.php 中的意外 '/' 第 9 行

我该如何解决?

您还需要将 <div class="welcome_msg"></div> 放在引号内。

像这样:

echo "<div class='welcome_msg'>Welcome: ".ucwords($name).". IP of our server is: ".ucwords($ip)." , and port is: ".ucwords($port)."<br></div>";
echo '<div class="welcome_msg">"Welcome: '.ucwords($name).'. IP of our server is: '.ucwords($ip).' , and port is: '.ucwords($port).'<br></div>';

** 数字词(IP 和端口)不需要 ucwords

你也可以试试这个:

echo "<div class='welcome_msg'>Welcome: " . ucwords($name) . ". IP of our server is: " . ucwords($ip) . ", and port is: " . ucwords($port) . "<br></div>";
echo '<div class="welcome_msg"> Welcome: '.ucwords($name).'. IP of our server is: '.ucwords($ip).' , and port is: '.ucwords($port).'<br></div>';

您的 HTML 标签被视为文本并与其他文本一起用引号引起来。

因为您的 HTML 在文本中包含引号,您需要通过在引号前添加 \ 来转义文本中的引号。转义引号告诉 PHP 不要将该特定引号视为字符串的结束引号。

echo "<div class=\"welcome_msg\">Welcome: ".ucwords($name).". IP of our server is: ".ucwords($ip)." , and port is: ".ucwords($port)."<br></div>";