Skip to content

Instantly share code, notes, and snippets.

@snoise
Last active December 20, 2015 15:39
Show Gist options
  • Save snoise/6156114 to your computer and use it in GitHub Desktop.
Save snoise/6156114 to your computer and use it in GitHub Desktop.
Gistのテスト用コードです。 ちなみにphpの簡単挨拶クラスです
<?php
Class CodeTest{
public $name;
public function __construct($name = '名無し'){
$this->name = $name;
}
public function morning(){
echo $this->name."さん、おはようございます。";
}
public function daytime(){
echo "こんにちは!!".$this->name."さん";
}
public function night(){
echo $this->name."さん、こんばんはー。";
}
public function goodNignt(){
echo $this->name."さん、おやすみなさい";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment