use Request, Auth, File, ZipArchive; <==有us,不過Request沒有可參考的修正。
if ( isViewer() ) {
return 'Authority does not match';
}
$request = Request::input(); <== Request 出現波浪紅線
$loginInfo = getLoginInfo();
$nowYear = getNowSems();
$teacherType = '';
$teacher_title = $loginInfo['teacher_title'];
if ( $teacher_title == '爸爸' || $teacher_title == '兒子' ) {
$teacherType = '1';
}
$show = isset($request['show']) ? $request['show'] : '';
$isAdmin = isset($request['isAdmin']) ? $request['isAdmin'] : 0;
各位先進們好,小弟初次接觸PHP,整個架構是php laravel幾版我不知道,問題是上面所示,ReQuest有紅色的波浪線,找不到可修正的參考,想請問這個要怎麼解決?