简而言之,我试图在我的脚本中删除一个隐藏的零宽度换行符 (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-->";
任何人都可以提供的任何帮助将不胜感激。所有代码片段都是从我的脚本中直接复制和粘贴的。