1

タイトルで言及されているエラーは、(どうやら) 33 行目で発生しています。補足として、これを最適化する方法についての推奨事項、または一般的な提案があれば、私はすべて聞いています。ありがとう!

コードは次のとおりです。

<?php
error_reporting(E_ALL);
require('config.php');

$filename = htmlentities($_FILES['file']['name']);
$tmpname = $_FILES['file']['tmp_name'];
$filesize = $_FILES['file']['size'];
$filetype = $_FILES['file']['type'];    
$file = $_FILES['file'];

class connect {

    public function dbConnect($host, $user, $pass, $dbname) {

        try {
            global $dbcon;
            $dbcon = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass);
        }
        catch (PDOException $e) {
            print $e->getMessage();
        }
    }
}

class upload Extends connect {
    public function uploadFile($dbcon, $filename, $filesize, $filetype, $file) {

        if ($filesize > 2000000) {
            echo "File too large!";
        }
        elseif ($filesize <= 2000000) {
            $stmt = $dbcon->prepare("INSERT INTO upload (name, type, size, content) VALUES (?, ?, ?, ?)");
            $stmt->$dbcon->bindParam(1, $filename);
            $stmt->$dbcon->bindParam(2, $filetype);
            $stmt->$dbcon->bindParam(3, $filesize);
            $stmt->$dbcon->bindParam(4, $file);
            $stmt->$dbcon->execute();
            $stmt->$dbcon->close();
            echo "File uploaded!";
        }
        else {
            echo "Unexpected error! Please try again!";
        }
    }
}
$con = new connect;
$con->dbConnect($host, $user, $pass, $dbname);

$exec = new upload;
$exec->uploadFile($dbcon, $filename, $filesize, $filetype, $file);
4

1 に答える 1

5

以下を使用する必要があります。

$stmt->bindParam();

からドロップ$dbcon$stmt->$dbcon->bindParam()ます。

于 2012-07-18T19:30:43.283 に答える