Skip to content

Instantly share code, notes, and snippets.

@ywindish
Created September 29, 2014 05:39
Show Gist options
  • Save ywindish/72b7f8844c6402ea206f to your computer and use it in GitHub Desktop.
Save ywindish/72b7f8844c6402ea206f to your computer and use it in GitHub Desktop.
PHPのトレイト
<?php
// http://php.net/manual/ja/language.oop5.traits.php
trait Kanikama {
function eat_kani() { print "eat kanikama"; }
}
class Salad {
use Kanikama;
public function eat() { $this->eat_kani(); }
}
$s = new Salad();
$s->eat();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment