0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

review.php

Posted at
menuName = $menuName; // userNameをuserIdに書き換えてください $this->userId = $userId; $this->body = $body; } public function getMenuName() { return $this->menuName; } public function getBody() { return $this->body; } public function getUser($users) { foreach ($users as $user) { // $userのidプロパティと、インスタンス自身のuserIdプロパティを比べるように書き換えてください if ($user->getId() == $this->userId) { return $user; } } } } ?>

//idで管理する

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?