Last active
March 10, 2020 04:56
-
-
Save tarunama/0055beca0683b4edea97 to your computer and use it in GitHub Desktop.
[PHP] traitを使おう ref: https://qiita.com/tarunama/items/32255aab1f777287eaac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
trait Access | |
{ | |
public function destination($to_where) | |
{ | |
echo $to_where; | |
} | |
} | |
class Navi | |
{ | |
use Access; | |
} | |
$navi = new Navi(); | |
$navi->destination('青森'); // 青森 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
trait Access | |
{ | |
public function destination($to_where) | |
{ | |
echo $to_where; | |
} | |
} | |
class Navi | |
{ | |
use Access; | |
} | |
$navi = new Navi(); | |
$navi->destination('青森'); // 青森 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment