12

简而言之,我试图在我的脚本中删除一个隐藏的零宽度换行符 (U+FEFF)。它出现的网页是http://cynicode.co.uk(请注意,索引页面已经过修改,是目前唯一可以正常运行的页面)

通过查看页面上的 html 元素,可以看到:

在此处输入图像描述

< body >关键是和之间的红点< !--5-- >。将鼠标悬停在上面时,表明它是一个\ufeff角色。问题是,当我查看脚本时,不存在这样的角色。

我正在使用 PHP 和 HTML 来构建这个页面,其中的项目< !--4-- >包括< !--5-- >以下内容。首先,在实际的索引页面本身:

<?php
  echo "<!--4-->";
  echo "<head><meta charset='utf-8' /><link rel='shortcut icon' type='image/ico' href='./images/CyniCode.ico'>
    <title>CyniCode :: Index</title>
    <meta name='description' content='The Cynic's paradise! Home of Cynical.' />
    <meta name='author' content='Cynical' />
    <meta name='keywords' content='Cynical;Blog;Code' />
    <link type='text/css' rel='stylesheet' href='./css/mystyle.css' />
    <link rel='shortcut icon' type='image/ico' href='./images/CyniCode.ico'>
    <link href='http://fonts.googleapis.com/css?family=Muli' rel='stylesheet' type='text/css' />
    <script type='text/javascript' src='http://static.proofiction.net/jquery/jquery-1.9.1.min.js'></script>
    <script type='text/javascript' src='http://static.proofiction.net/jquery/loginwait.js'></script>
    <script type='text/javascript' src='http://static.proofiction.net/jquery/googleAnalytics.js'></script>
    <script type='text/javascript' src='./http://static.proofiction.net/jquery/jquery.bxslider.js'></script>
    <script type='text/javascript' src='./http://static.proofiction.net/jquery/jquery.bxslider.min.js'></script>
    <script type='text/javascript' src='https://www.google.com/jsapi'></script>
    <script type='text/javascript'><!--
      google_ad_client = 'ca-pub-xxxxxxxxxxxx';
      /* BiggerNavBox */
      google_ad_slot = '3977705372';
      google_ad_width = 300;
      google_ad_height = 600;
      //-->
    </script>
    <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

      ga('create', 'UA-xxxxxxxx-1', 'cynicode.co.uk');
      ga('send', 'pageview'); 
    </script>

    </head>";
  require_once './functions/page.php';

这构成了索引页面。引用的 page.php 脚本是我快速、干净地设置页面的秘籍。但是......页面上的两条评论之间存在微小的差异。这是两条评论之间的剩余差异。

<?php
  echo "<!--5-->";

任何人都可以提供的任何帮助将不胜感激。所有代码片段都是从我的脚本中直接复制和粘贴的。

4

2 回答 2

23

您的一些.php文件(可能./functions/page.php包含Byte Order Mark. 如果您使用的是某些 IDE,请检查此文件的编码属性,如果幸运的话,您将能够将其删除。

编辑如果您使用 *nix,优雅的方式来搜索带有 BOM 的 UTF-8 文件?应该有帮助。

于 2013-08-03T06:28:37.620 回答
12

这是类似问题的解决方案:HTML 中的额外 BOM 字符使 DOCTYPE 标记无效

基本上问题的根源是编码为的PHP文件UTF8 with BOM,将它们编码为UTF-8 without BOM解决了这个问题。

Notepad++ UTF-8 编码,无 BOM

于 2013-11-08T04:14:12.223 回答