-3
picture of code我有這樣的代碼:解析錯誤:語法錯誤,意外的'?'錯誤
<?php if(isset($_GET["update"])){
$id = $_GET["id"] ?? null;
$where = array("id"=>$id);
$row = $obj->select_record("medicines",$where);
?>
我得到這個:
解析錯誤: '?' 語法錯誤,意外在C:\瓦帕\ WWW \上線新建文件夾\的index.php 42
是否有任何替代上述代碼?
您正在使用什麼版本的PHP?我猜測<7,http://php.net/manual/en/migration70.new-features.php – chris85
看起來你已經寫了一些PHP7代碼,並且你沒有使用PHP7 .. –