简体   繁体   English

转储阵列问题 SQL 服务器

[英]Dump Array problems SQL Server

I am using IPN Paypal script to automate my transactions, but I get the following error:我正在使用 IPN Paypal 脚本来自动执行我的交易,但出现以下错误:

Dump array error in my ipn log在我的 ipn 日志中转储数组错误

Is there something wrong with my code?我的代码有问题吗?

$updateOrder = DB::Executa("UPDATE site_donations SET ultima_alteracao = '".time()."', transaction_code = '".$tid."', status = '".$finalStatus."', status_real = '".$status."' WHERE protocolo = '".$ref."' LIMIT 1");

if (!$updateOrder) {
    saveLog("Não foi possível atualizar o status da transação! #1", 1);
    exit;
}

Try to remove LIMIT 1 at the end尝试在最后删除 LIMIT 1

Thanks for the quick answer, I tried removing LIMIT 1 but that did not help.感谢您的快速回答,我尝试删除 LIMIT 1 但这没有帮助。

I still keep getting我仍然不断得到

Dump Array error转储阵列错误

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM