0
0

More than 3 years have passed since last update.

備忘録 PHP クラス インスタンス プロパティ

Posted at
index.php
<?php
class Menu {   //Menuクラスを定義 クラス名は大文字で始める クラス(設計図)//
public $name //プロパティ(インスタンスが持つデータ)を定義//
  }

$fish = new Menu();  //インスタンス(実体)を生成 生成したインスタンスを変数$fishに代入 インスタンスの生成はクラスの外で行う//
$fish->name = 'FISH';  //プロパティに値をセット(プロパティ名に$は不要)//
echo $fish->name;  //セットした値にアクセス($は不要)//
//結果: FISH
?>
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