我知道美化不能正确缩进 PHP。我想要的是它跳过它,因为我在页面内的 PHP 代码之后得到了奇怪的空格。
这是一个屏幕截图:
我一直在尝试很多插件,环顾了一个小时,我快疯了!
有人可以帮忙吗?谢谢 :)
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>MicroCMS - Home</title>
</head>
<body>
<header>
<h1>MicroCMS</h1>
</header>
<?php foreach ($articles as $article) : ?>
<article>
<h2><?php echo $article['art_title']; ?></h2>
<p>
<?php echo $article['art_content']; ?>
</p>
</article>
<?php endforeach; ?>
<footer>
<a href="http://www.test.fr/">MircroCMS</a> is a student work
</footer>
</body>
</html>