以下代码段给出了 2 个语法错误,我在其中检查if
块中的条件
public function __construct() {
if(isset($_POST['update_email')) { # First syntax error
$this->email = $_POST['update_email'];
}
if(isset($_POST['password')) { # Second syntax error
$this->password = $_POST['password'];
}
}
我无法发现语法错误。它是什么 ?