我正在尝试使用 firephp 和 firebug 显示来自 ajax 调用的一些信息。当 ajax 调用完成时,我能够显示一些信息。有没有办法在执行时显示?例如,我在 foreach 循环中的 id 下面的代码。
foreach ($this->PreQualcalls as $value) {
ob_start();
if(isset($array ['env:Envelope'] ['env:Body']['n1:preQualResponse1207'])){
$this->setKeyNamePreQualResponse("n1:preQualResponse1207");
$this->setKeyNameServiceProducts("n1:ServiceProduct1207");
$this->setKeyNameModemProducts("n1:ModemProduct1207");
$this->firephp->log("entered the 1207 call");
}else{
$this->setKeyNamePreQualResponse("n1:preQual1308Response");
$this->setKeyNameServiceProducts("n1:ServiceProduct1308");
$this->setKeyNameModemProducts("n1:ModemProduct1308");
$this->firephp->log("entered the 1308 call");
}
ob_flush();
$this->firephp->log($this->getKeyNamePreQualResponse(),"Response type");
}
我希望能够在控制台中显示 getKeyNamePreQualResponse() ,因为它正在通过循环。
可能吗?
谢谢你。