我正在为我的媒体课在网页上进行测验,但是,我遇到了麻烦。当我提交测验时,我收到通知说:
注意:未定义变量:第 65 行 /var/www/html/horvati2-results.php 中的 all_my_variables
注意:未定义的变量:第 69 行 /var/www/html/horvati2-results.php 中的 current_timestamp
注意:未定义变量:第 70 行 /var/www/html/horvati2-results.php 中的 SERVER
我的这部分 PHP 看起来像这样:
$csv_filehandle = fopen("/var/www/html/data/quiz.csv",'a');
fputcsv($csv_filehandle,array($summer,$spring,$fall,$winter));
fclose ($csv_filehandle);
$visit_id = uniqid('',TRUE);
$json_filehandle = fopen("/var/www/html/data/$visit_id.json",'w');
fwrite($json_filehandle,json_encode($all_my_variables));
fclose($json_filehandle);
$all_my_variables = array(
'timestamp' => $current_timestamp,
'user_ip' => $SERVER['REMOTE_ADDR'],
'summer' => $summer,
'spring' => $spring,
'fall' => $fall,
'winter' => $winter,
);
$current_hour = date_default_timezone_set("America/Chicago");
$current_timestamp = date(DATE_RFC822);
我将不胜感激一些帮助!