Skip to content

Instantly share code, notes, and snippets.

@nouka
Created March 24, 2017 02:21
Show Gist options
  • Save nouka/a60aeec8d5dc973a954086c9174660d2 to your computer and use it in GitHub Desktop.
Save nouka/a60aeec8d5dc973a954086c9174660d2 to your computer and use it in GitHub Desktop.
Staticとは何か
<?php
class Human
{
// Human型の太郎($taro)がする行動なので非static
public function say($what)
{
echo $what;
}
// Human型のインスタンスはすべてHumanなのでstatic
public static function getType()
{
echo __CLASS__;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment