Created
August 6, 2019 13:52
-
-
Save kusa-mochi/db4990bdd04b41c0847dfbf80cacaf55 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| // main.php | |
| // 外部ファイルのインポート | |
| require_once 'Soda.php'; | |
| // 名前空間のエイリアス | |
| use Mochi\MyNamespace as Mine; | |
| // Sodaクラスのインスタンスの生成。コンストラクタの呼び出し。 | |
| $soda = new Mine\Soda(50); | |
| // Sodaクラスのメソッドの呼び出し。 | |
| $soda->EchoParams(); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment