首页 > 解决方案 > 在php文件中获取解析错误

问题描述

我在php中编写了一些代码。示例代码片段如下:

    include('config.php');
    require_once "variables.php";

    global $uploadID = " " ;    //getting error in this line

    function uploadImage($wtI,$tbln,$pri,$db){
        if(is_array($_FILES)) {
        if(is_uploaded_file($_FILES['image']['tmp_name'])) {
            $sourcePath = $_FILES['image']['tmp_name'];
            $targetFolder = "../upload_images/$wtI/";
            if (!file_exists($targetFolder)) {
                mkdir($targetFolder, 0777, true);
            }
            $targetPath = $targetFolder.$_FILES['image']['name'];
            while(file_exists($targetPath)){
                $targetPath = $targetFolder.uniqid().'-'.$_FILES['image']['name'];
            }
            if(move_uploaded_file($sourcePath,$targetPath)){

                $sql = "UPDATE `$tbln` SET image='".substr($targetPath,3)."' WHERE $pri=$uploadID;";
                $result=mysqli_query($db,$sql);
                return true;
            }
            else return false;
        }
    }
 }

问题是我在运行 php 文件时收到以下错误消息:

Parse error:syntax error, unexpected '=', expecting ',' or ';' in C:\wamp64\www\project\php\additem.php on line 6

这个错误有什么解决办法吗?

标签: phpparse-error

解决方案


global 关键字允许您访问全局变量,而不是创建一个新变量。只需删除那里的全局关键字。全局关键字必须放在您将要使用该变量的函数内。检查https://www.w3schools.com/php/php_variables.asp以了解如何使用它。

您的代码的更正将是:

include('config.php');
require_once "variables.php";
// Changes start here
$uploadID = " ";    //getting error in this line

function uploadImage($wtI,$tbln,$pri,$db){
    global $uploadID;
    //Changes end here
    if(is_array($_FILES)) {
    if(is_uploaded_file($_FILES['image']['tmp_name'])) {
        $sourcePath = $_FILES['image']['tmp_name'];
        $targetFolder = "../upload_images/$wtI/";
        if (!file_exists($targetFolder)) {
            mkdir($targetFolder, 0777, true);
        }
        $targetPath = $targetFolder.$_FILES['image']['name'];
        while(file_exists($targetPath)){
            $targetPath = $targetFolder.uniqid().'-'.$_FILES['image']['name'];
        }
        if(move_uploaded_file($sourcePath,$targetPath)){

            $sql = "UPDATE `$tbln` SET image='".substr($targetPath,3)."' WHERE $pri=$uploadID;";
            $result=mysqli_query($db,$sql);
            return true;
        }
        else return false;
    }
}

}

我正在用手机接听,请原谅格式问题


推荐阅读