gpt4 book ai didi

php - 使查看源代码中的html出现在每一行

转载 作者:行者123 更新时间:2023-11-28 05:02:00 25 4
gpt4 key购买 nike

如何使浏览器 View 源中的 html 出现在每一行?我正在使用 php 使用这样的模板生成我的网页:

$template  = '<!DOCTYPE html>';
$template .= '<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">';
$template .= '<head profile="http://gmpg.org/xfn/11"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">';
echo $template;

问题是,当我在浏览器中使用查看源代码查看它时,它全部显示在一行上。

如何让它出现在不同的行上?

我尝试在模板中使用\r\n,但它不起作用。

最佳答案

$template  = <<<EOT
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type"; content="text/html; charset=UTF-8">
EOT;

echo $template;

使用文档

关于php - 使查看源代码中的html出现在每一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13657276/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com