我目前正在开发一个自定义模块,由于某种原因,它会在我输出的任何内容之前添加一个空格。 我的设置是这样的:
主要类在帮助器.php中, 逻辑在mod_name .php中, 输出在/ tmpl / default .php
奇怪的是,如果我的类中有一个返回html的方法。然后我在我的模板中调用这个方法一切都很好,没有额外的行。 但是如果我尝试在我的模板或mod_name.php中编写输出,甚至是纯文本,我会得到这个额外的行。
这是一个截图:
如果有人之前遇到这样的事情,请告诉我,我非常感激!
答案 0 :(得分:3)
原来问题是因为我包含了2个文件,每个文件都包含一个单独的类,出于某种原因,当我只包含1个文件时,它们都运行正常。包含的文件没有空格,并且没有生成任何输出,它只包含逻辑。 谢谢你的时间和答案。
修改强>
最近偶然发现了这个问题,结果是没有BOM的UTF-8是要走的路,但是MVC明智的,确保你的组件入口点“./com_helloworld/helloworld.php”是UTF- 8首先没有BOM!
答案 1 :(得分:2)
没有BOM的UTF-8就是答案。在找到原因之前,我用条件CSS制作了3个复杂的Joomla网站来管理这个问题。 我还发现这个脚本放在Joomla网站的根目录上以递归方式自动保存UTF-8没有BOM文件。 它起作用并节省了我很多时间:
<?php
// Tell me the root folder path.
// You can also try this one
// $HOME = $_SERVER["DOCUMENT_ROOT"];
// Or this
// dirname(__FILE__)
$HOME = dirname(__FILE__);
// Is this a Windows host ? If it is, change this line to $WIN = 1;
$WIN = 0;
// That's all I need
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>UTF8 BOM FINDER and REMOVER</title>
<style>
body { font-size: 10px; font-family: Arial, Helvetica, sans-serif; background: #FFF; color: #000; }
.FOUND { color: #F30; font-size: 14px; font-weight: bold; }
</style>
</head>
<body>
<?php
$BOMBED = array();
RecursiveFolder($HOME);
echo '<h2>These files had UTF8 BOM, but i cleaned them:</h2><p class="FOUND">';
foreach ($BOMBED as $utf) { echo $utf ."
\n"; }
echo '</p>';
// Recursive finder
function RecursiveFolder($sHOME) {
global $BOMBED, $WIN;
$win32 = ($WIN == 1) ? "\\" : "/";
$folder = dir($sHOME);
$foundfolders = array();
while ($file = $folder->read()) {
if($file != "." and $file != "..") {
if(filetype($sHOME . $win32 . $file) == "dir"){
$foundfolders[count($foundfolders)] = $sHOME . $win32 . $file;
} else {
$content = file_get_contents($sHOME . $win32 . $file);
$BOM = SearchBOM($content);
if ($BOM) {
$BOMBED[count($BOMBED)] = $sHOME . $win32 . $file;
// Remove first three chars from the file
$content = substr($content,3);
// Write to file
file_put_contents($sHOME . $win32 . $file, $content);
}
}
}
}
$folder->close();
if(count($foundfolders) > 0) {
foreach ($foundfolders as $folder) {
RecursiveFolder($folder, $win32);
}
}
}
// Searching for BOM in files
function SearchBOM($string) {
if(substr($string,0,3) == pack("CCC",0xef,0xbb,0xbf)) return true;
return false;
}
?>
</body>
</html>
答案 2 :(得分:1)
我今天遇到了类似的问题,并设法通过将模块布局编码为&#34; UTF-8而没有BOM&#34;
来解决它答案 3 :(得分:0)
它看起来是设置隐藏的内容的保存位置。我至少已经发现这有时打印和rss图标关闭,但容器无法消失。如果可以找到源,则可以删除整个内容,或在数据库文件中进行更正。看起来像某种注册模块,所以你可以在源文件中找到你可能有这样的任何模块,如果它响铃。对不起确切的答案,但希望给出一点方向。