Skip to content

Instantly share code, notes, and snippets.

@kusa-mochi
Created August 6, 2019 13:52
Show Gist options
  • Save kusa-mochi/db4990bdd04b41c0847dfbf80cacaf55 to your computer and use it in GitHub Desktop.
Save kusa-mochi/db4990bdd04b41c0847dfbf80cacaf55 to your computer and use it in GitHub Desktop.
<?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