Fatal error: Uncaught Error: Call to undefined method student::hasHonors() in C:\xampp\htdocs\index.php:29 Stack trace: #0 {main} thrown in C:\xampp\htdocs\index.php on line 29
というエラー表示が出ます。
エラーコードを検索してみたところ、関数が二重になっている可能性があるだとかありましたがそれに匹敵しませんしどこがおかしいのかコードを見直しても原因がわかりません。
<?php class student{ var $name; var $major; var $gpa; } function hasHonors(){ if($this->gpa>=3.5){ return "true"; return "false"; } } $student1=new student("jim","business",2.8); $student2=new student("Pam","Art",3.6); echo $student1->hasHonors(); ?>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。