dqnk57224 2018-09-14 13:11
浏览 167
已采纳

php标签之前/之后的空格

I have one small issue with my code below, I'd like the HTML view of the source code to be "tidy" as well as the PHP, I've spent days searching but I've drawn a blank as to why the HTML side is not tidy, the only thing I'm guessing is extra whitespace is being generated, if that's the case I'm not sure why, if anyone could help it would be appreciated, thanks.

html

<div class='col-md-12'>
        <div class='alert alert- info'>
        Already Logged In
    </div>
    </div>

php

<div class='col-md-12'>
    <?php if ($action=='logged-in'): ?>
    <div class='alert alert- info'>
        Already Logged In
    </div>
    <?php endif ?>
</div>
  • 写回答

2条回答 默认 最新

  • dsf1222 2018-09-14 13:22
    关注

    Your lines with just PHP code still keep their whitespace, so the spaces at the beginning of that line and the at the end still count.

    Unfortunately, this means you'd have to have your code look like this:

    <div class='col-md-12'>
    <?php if ($action=='logged-in'): ?>    <div class='alert alert- info'>
            Already Logged In
        </div>
    <?php endif ?></div>
    

    Pretty ugly, right?

    You have a couple options:

    • Run the final HTML (captured using an output buffer) through something like Tidy, which has indentation correction built-in as an option. A lot of work for something no one's ever gonna see, but it'll do the trick.
    • Use a templating system to separate out the PHP a bit. Something like Twig can probably be massaged a little easier into the nicely indented HTML you want, but there'll still be some of the same troubles if you're not careful.
    • Stop caring. (This is my recommendation.) Focus on the readability and simplicity of the code you'll actually be working with, not the whitespace of the resulting HTML, which pretty much no one will ever notice or care about. Take a look at the HTML generated for any major website - Amazon.com, Facebook.com, Google.com, etc. - and you'll see that this is the standard practice.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部