-1

我的脚本有一些关于贝宝 IPN 的问题。我使用 PHPDesigner 7,它在第 (88) 行给了我一个红色错误,我真的试图查看是否缺少一个大括号,或者是否有问题但似乎没有任何问题,hoveren PHPDesigner 在第 88 行准确地显示了我(语法错误意外T_ELSE)。

任何帮助表示赞赏提前谢谢。

这是我的代码:

    <?php

// PHP 4.1

// read the post from PayPal system and add 'cmd'

$req = 'cmd=_notify-validate';

$File = "errorss.txt"; 
 $Handle = fopen($File, 'w');
 $Data = "Entered the IPN script\n"; 
 fwrite($Handle, $Data); 

foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}

// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);

 $Data = "Authentication Complete\n"; 
 fwrite($Handle, $Data); 

// assign posted variables to local variables
$item_name = $_POST['item_name'];
$item_number = $_POST['item_number'];
$payment_status = $_POST['payment_status'];
$payment_amount = $_POST['mc_gross'];
$payment_currency = $_POST['mc_currency'];
$txn_id = $_POST['txn_id'];
$receiver_email = $_POST['receiver_email'];
$payer_email = $_POST['payer_email'];
$payment_gross = $_POST['payment_gross'];
$payment_fee = $_POST['payment_fee'];

 $Data = "Iten number:".$item_number." ".$payment_status."\n"; 
 fwrite($Handle, $Data); 

if (!$fp) {


 $Data = "Error\n"; 
 fwrite($Handle, $Data); 

} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {

 $Data = "Verified\n"; 
 fwrite($Handle, $Data); 
    if($payment_status == "Completed")
    {

 $Data = "Completed\n"; 
 fwrite($Handle, $Data); 

require_once('./dbconnect.php');



$kkql= mysql_query("SELECT * FROM orders WHERE w='$item_number'");



                if(mysql_num_rows($kkql) == 0)
                    {

                    exit(); 
                    } 

                                 mysql_query("UPDATE orders SET paid='1'");







                }
    }
}
else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
}

}
fclose ($fp);


} //This is also causing the error i think as it is red when it click on it, open and closed braces are displayed in green this one in red
 fclose($Handle); 
?>
4

3 回答 3

0

问题是 this else 不适合其余的代码

else if (strcmp ($res, "INVALID") == 0) {
    // log for manual investigation
}

我想你的意思可能是这样的

<?php

// PHP 4.1

// read the post from PayPal system and add 'cmd'

$req = 'cmd=_notify-validate';

$File = "errorss.txt"; 
$Handle = fopen($File, 'w');
$Data = "Entered the IPN script\n"; 
fwrite($Handle, $Data); 

foreach ($_POST as $key => $value) {
    $value = urlencode(stripslashes($value));
    $req .= "&$key=$value";
}

// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);

$Data = "Authentication Complete\n"; 
fwrite($Handle, $Data); 

// assign posted variables to local variables
$item_name = $_POST['item_name'];
$item_number = $_POST['item_number'];
$payment_status = $_POST['payment_status'];
$payment_amount = $_POST['mc_gross'];
$payment_currency = $_POST['mc_currency'];
$txn_id = $_POST['txn_id'];
$receiver_email = $_POST['receiver_email'];
$payer_email = $_POST['payer_email'];
$payment_gross = $_POST['payment_gross'];
$payment_fee = $_POST['payment_fee'];

$Data = "Iten number:".$item_number." ".$payment_status."\n"; 
fwrite($Handle, $Data); 

if (!$fp) {
 $Data = "Error\n"; 
 fwrite($Handle, $Data); 
} else {
    fputs ($fp, $header . $req);
    while (!feof($fp)) {
        $res = fgets ($fp, 1024);
        if (strcmp ($res, "VERIFIED") == 0) {
            $Data = "Verified\n"; 
            fwrite($Handle, $Data); 
            if($payment_status == "Completed")
            {
                $Data = "Completed\n"; 
                fwrite($Handle, $Data); 
                require_once('./dbconnect.php');
                $kkql= mysql_query("SELECT * FROM orders WHERE w='$item_number'");
                if(mysql_num_rows($kkql) == 0)
                {
                    exit(); 
                } 
                mysql_query("UPDATE orders SET paid='1'");
            }
        }
        if (strcmp ($res, "INVALID") == 0) {
            // log for manual investigation
        }
    }
}
    fclose ($fp);
} //This is also causing the error i think as it is red when it click on it, open and closed braces are displayed in green this one in red
fclose($Handle); 
?>

如果你很好地缩进你的代码,那么这样的错误就很明显了。

于 2013-07-16T17:00:49.790 回答
0

根据我的评论,如果条件尝试将其放在您的后面并删除最后的关闭,那么您有额外的条件}并且您的条件没有父母elseifif}

 <?php

// PHP 4.1

// read the post from PayPal system and add 'cmd'

$req = 'cmd=_notify-validate';

$File = "errorss.txt"; 
$Handle = fopen($File, 'w');
$Data = "Entered the IPN script\n";
fwrite($Handle, $Data);

foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}

// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);

$Data = "Authentication Complete\n";
fwrite($Handle, $Data);

// assign posted variables to local variables
$item_name = $_POST['item_name'];
$item_number = $_POST['item_number'];
$payment_status = $_POST['payment_status'];
$payment_amount = $_POST['mc_gross'];
$payment_currency = $_POST['mc_currency'];
$txn_id = $_POST['txn_id'];
$receiver_email = $_POST['receiver_email'];
$payer_email = $_POST['payer_email'];
$payment_gross = $_POST['payment_gross'];
$payment_fee = $_POST['payment_fee'];

$Data = "Iten number:".$item_number." ".$payment_status."\n";
fwrite($Handle, $Data);

if (!$fp) {


$Data = "Error\n";
fwrite($Handle, $Data);

} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {

$Data = "Verified\n";
fwrite($Handle, $Data);
if($payment_status == "Completed")
{

$Data = "Completed\n";
fwrite($Handle, $Data);

require_once('./dbconnect.php');



$kkql= mysql_query("SELECT * FROM orders WHERE w='$item_number'");



            if(mysql_num_rows($kkql) == 0)
                {

                exit();
                }

                             mysql_query("UPDATE orders SET paid='1'");







            }
}else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
}
}



fclose ($fp);


} //This is also causing the error i think as it is red when it click on it, open and closed braces are displayed in green this one in red
fclose($Handle);
?>
于 2013-07-16T17:06:11.350 回答
0

删除第}87 行(85 或 86,如果您愿意)的右括号。

这是假设您想要else if而不是if第 88 行的else if (strcmp ($res, "INVALID") == 0) {.

于 2013-07-16T16:55:11.747 回答