使用php脚本代码解析错误

时间:2014-02-15 11:32:22

标签: php

我有这个代码,所有时间我都得到同样的错误

error_reporting(0);
$file = basename($_FILES['uploaded']['name']).'.scan';
if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $file)) {
    $myFile = "ip_up.txt";

    $fh = fopen($myFile, 'w');
    $port1 = $_POST['port3'];
    $port2 = $_POST['port4'];
    $ofile = @fopen($file, "r");

    if ($ofile) {
        while (!feof($ofile)) {
            $ip1 = fgets($ofile, 2048);
            $ip = trim($ip1);

            for($i=$port1;$i<$port2+1;$i++) {
                $tB = microtime(true);
                $fP = fSockOpen($ip, $i, $errno, $errstr, 1);
                $tA = microtime(true);
                if (!$fP) {
                    echo $ip.":".$i." – down";
                } else {
                    echo $ip.":".$i." – ".round((($tA – $tB) * 1000), 0)." ms";
                    fwrite($fh,$ip."\r\n");
                }
                echo "<br>";
                flush();
            }
        }
    }
    echo '<a href="ip_up.txt">Download</a>';
}
else die('error');
?>

它在第20行给出了这个错误

Parse error: syntax error, unexpected T_STRING

我试图把''排在第20行......但它确实有效!!

2 个答案:

答案 0 :(得分:1)

问题在于:

round((($tA – $tB)

我认为你想减去它们,所以使用它:

round((($tA - $tB)

这是一个非常小的差异,但你没有使用正确的短划线。

答案 1 :(得分:0)

添加:

$t = $tA - $tB;
echo $ip.":".$i." – ".round((($t) * 1000), 0)." ms";