变量记录到文件似乎不起作用,但没有例外

时间:2018-08-01 12:59:45

标签: php multidimensional-array error-logging

我正在尝试打印出一个多级lvl数组,这样我就可以查看传递的信息并可能添加一些信息。
我尝试了一个foreach,但根据要求有太多不同的级别。
也有html文字妨碍我使用简单的print_r
读取输出 我复制了一个正常工作的异常日志记录部分并进行了编辑。由于某些原因,它不起作用。
我还创建了要写入的文件,并且该文件夹存在。
我没有发现任何错误日志,表明存在错误
此部分之后脚本将继续执行
我也使用“ error_log”功能进行了尝试,但是我也找不到该文件。
在这里我检查了./var/log/下的内容,而不是在source / log /下检查了转储。 我还检查了其他负载平衡服务器...

代码:

    $sOfferId = $aArticle['ggebayofferid'];

    $aBody = $this->createOfferItem($aArticle);
    print_r("\n abody: ".$aBody." \n");  //<- this shows me that the execution is reaching here
    $sDump = "\n";
    $sDump .= $aBody;
    file_put_contents( "log/ebayupdate.log", $sDump, FILE_APPEND );  //<-- not able to find this log
    $sURL = $this->_sURL.'/sell/inventory/v1/offer/'.$sOfferId;
    //error_log( print_r($aBody, TRUE) );  <-- not able to find this log

0 个答案:

没有答案