答案 0 :(得分:0)
你不能使用if(isset($ course =“matrix”)) 用
替换它if( isset($course) && $course == "matrix" ){
....
}
答案 1 :(得分:0)
if(isset($course) && $course == "matrix")){
// Do it something
}
答案 2 :(得分:0)
输出为:Parse error: syntax error, unexpected '=', expecting ',' or ')' on line 7
第7行:if(isset($course = "matrix"))
Isset检查是否设置了变量,而不是它的值是否包含字符串。如果变量已设置且不为null,请使用if(isset($course))
检查。如果你想检查变量是另一个变量,请使用if is without:
if($course == "something")