Skip to content

Instantly share code, notes, and snippets.

@monsat
Created February 15, 2014 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monsat/4d5ffe76054379f1c176 to your computer and use it in GitHub Desktop.
Save monsat/4d5ffe76054379f1c176 to your computer and use it in GitHub Desktop.
Classについて、このPHPコードの実行結果が分かる程度の理解が必要です
<?php
class User {
public $name = 'user';
public $age = 20;
}
class Admin extends User {
public $name = 'admin';
}
$user = new User();
$user->age = 30;
echo $user->name;
echo $user->age;
$admin = new Admin();
echo $admin->name;
echo $admin->age;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment