解析错误:语法错误,意外',',期待变量(T_VARIABLE)

时间:2017-08-31 16:40:21

标签: php pdo php-parse-error

我在定义的函数和来自error_reporting(E_ALL);

的错误

有错误Parse error: syntax error, unexpected ',', expecting variable (T_VARIABLE) in C:\xampp\htdocs\bs4\func.php on line 4

这是我的代码

<?php
error_reporting(E_ALL);
require_once "condb.php";
function noproblem(time,suggest,phone,eat,problem){ // Here is line 4

  $sql="insert into data(time,suggest,phone,eat,problem) values(?,?,?,?,?)";
  $stmt=$cn->prepare($sql);
  $stmt->bindParam("1",time);
  $stmt->bindParam("2",suggest);
  $stmt->bindParam("3",phone);
  $stmt->bindParam("4",eat);
  $stmt->bindParam("5",problem);

  try {
    $stmt->execute();
    echo "ok!";
  } catch (Exception $e) {
    echo $e->getTraceAsString();
  }
}
?>

3 个答案:

答案 0 :(得分:4)

在PHP中,变量必须以$:

开头
function noproblem($time,$suggest,$phone,$eat,$problem){

这同样适用于示例中的所有其他变量。

答案 1 :(得分:0)

变量以&#34; $&#34;开头。登录。

答案 2 :(得分:0)

如果确定所有变量均以“ $”符号开头,则可能是您的PHP版本造成的。