gpt4 book ai didi

php - Ajax responseText 和 echo 损坏,返回头文件内容

转载 作者:行者123 更新时间:2023-11-30 17:55:24 25 4
gpt4 key购买 nike

我的 thePhpFile.php 文件中有以下代码来处理 Ajax 调用:

<?php
require_once('usefulStuff.php'); // stuff used throughout the code

if (isset($_GET['zer']))
{

$bFound = false;


if(! $bFound)
{
echo "notfound";
return;
}
else
{
echo "found";
return;
}
}
?>

这是处理响应文本的内联 onreadystate 函数 (javascript):

var theResponseText = "rText";
var zer = "testing";

xmlhttp.onreadystatechange = function()
{
if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
theResponseText = xmlhttp.responseText;
alert("responseText is >>>" + theResponseText + "<<< that.");

if( theResponseText == 'notfound')
{
alert("sorry, nothing found.")
}
}
}

var ajaxText = "thePhpFile.php?zer=" + zer;
xmlhttp.open("GET", ajaxText, false);
xmlhttp.send();

如果我在我的 usefulStuff.php 包含文件中添加换行符或其他任何东西,我会将它添加到 usefulStuff.php 的底部,之后 ? > 结束标记——来自上面的以下代码行,一个 echo 语句,不遗余力地定位和获取那些额外的换行符等,并将它们返回到我的 responseText 中:

 echo "notfound";

在编写了一个编译器并处理了 BNF 语法之后,我不明白为什么将 php 中的 echo 语句设置为“echo”,而不是紧跟在“echo”之后的第一个分号“;”。这是在解析过程中遇到的。

我知道我可以使用 trim() 来撤消空格,但我的问题是,我想强制上面的 echo 语句以上面的 echo 语法建议的方式行事应该。如果上面的 echo 语句四处寻找我的包含文件中的无关空白以返回我的“未找到”文本有充分的理由,我不知道那是什么原因,但我想禁用这种意外行为.

我希望我的代码行 echo "notfound"; 只做那个,仅此而已 -- 只是回显单词 notfound 并在出现错误时停止回显在“未找到”文本后立即遇到分号。

如何限制 echo 行为仅回显紧跟在单词 echo 之后的内容,并在到达分号时停止回显?

顺便说一句,在试验我的 usefulStuff.php 文件中位于 ?> 终止标记之外的内容时,我在该文件的末尾添加了以下内容:

 // now ending the php code in usefuleStuff.php:
?>
<noscript>
<meta http-equiv="refresh" content="0;
URL=http://mywebsite.com/noscript.html"/>
</noscript>

代码行 echo "notfound"; -- 当我检索我的 responseText 时 -- 响应文本还包含所有三个 noscript 代码行,加上任何额外的空白,除了我的“未找到”。

所以 php 中的 'echo' 是垃圾收集我放在 usefulStuff.php 文件末尾的任何内容。

我如何限制 echo 的行为以执行代码行 echo "notfound"; 让您相信它会执行的操作,即仅回显单词 "notfound"?

最佳答案

我偶然发现了我的问题的解决方案,我怎样才能使声明 echo "notfound"; 在 Ajax 调用中完全按照语法建议的方式执行 -- 我很欣赏关于“为什么”我得到额外内容的解释,简单的代码行 echo "notfound"; 乍一看并不表明会发生。

这是我如何强制 echo "notfound;** 的语法做它看起来应该做的事情,即将单词 notfound 作为我的发送responseText,仅此而已——我从一篇高度外围相关的帖子中偶然发现了这个,该帖子只提到了 php 函数“ob_end_clean()”,我从那里获取了它。

这是我修改后的代码,它返回一个严格控制的数据 block 作为我的 Ajax responseText:

<?php
require_once('usefulStuff.php'); // stuff used throughout the code

if (isset($_GET['zer']))
{
$bFound = false;


if(! $bFound)
{
ob_end_clean();
ob_start();
echo "notfound";
ob_end_flush();
return;
}
else
{
echo "found";
return;
}
}
?>

为了验证它是否有效,我在我的 usefulStuff.php 文件的最后,结束 ?> 标记之外放置了十个换行符和以下代码:

   // now ending the php code in usefulStuff.php:
?>

// ten newlines here....

<noscript>
<meta http-equiv="refresh" content="0;
URL=http://mywebsite.com/noscript.html"/>
</noscript>

现在,无论我的 usefulStuff.php 包含文件中的关闭 ?> php 标记之外的任何代码或空格——我的 Ajax onreadystatechange 函数中的 responseText 包含我期望的内容是,“未找到”,没有别的。

自 1980 年代和 1990 年代初期我的 C 编程时代以来,我就没有使用过输出缓冲函数。这是我第一次使用 php 的输出缓冲函数,但它确实让我能够精细地控制我的 responseText 在我的 Ajax 调用中的样子。

关于php - Ajax responseText 和 echo 损坏,返回头文件内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18140340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com