phpの参考書で勉強中です。
windows10、eclipse:Version: 2019-12 (4.14) XAMPP for windows 7.4.2を使っています。
以下のphpのプログラムを書いたのですがthis->name = $name;のところに
「構文エラー、unexpected'->'」というエラーが出ています。
直し方がわからないので教えてくださいお願いいたします。
php
1<?php 2class Entree { 3 4 public $name; 5 6 public $ingredients = array(); 7 8 public function __construct($name,$ingredients){ 9 10 this->name = $name; 11 12 this->ingredients = $ingredients; 13 14 } 15 16 function hasIngredient($ingredient) { 17 18 return in_array($ingredient, $this->ingredients); 19 20 } 21} 22
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/06 12:09
退会済みユーザー
2020/02/12 08:28
2020/02/12 09:09