定义变量时,我收到一个未定义的变量错误

时间:2013-12-07 21:25:57

标签: php

定义变量时,我收到一个未定义的变量错误。吼叫是我的代码

<?php
$imagepath = $_SESSION['path'];
require_once('class-db.php');

if ( !class_exists('INSERT') ) {
    class INSERT {
        public function post($postdata) {
            global $db;

            $query = "
                            INSERT INTO posts (title, content, subcontent, date, category, image)
                            VALUES ('$postdata[title]', '$postdata[content]', '$postdata[subcontent]', '$postdata[date]', '$postdata[category]', '$imagepath')
                        ";

            return $db->insert($query);
        }
    }
}

$insert = new INSERT;

?>

1 个答案:

答案 0 :(得分:1)

$imagepath在您的函数之外声明,因此除非您将其作为参数传递或使用global关键字,否则它在函数内部不可用。见Variable Scope

public function post($postdata, $imagepath) {
    global $db;

public function post($postdata) {
    global $db, $imagepath;