2
1

More than 3 years have passed since last update.

PHP 構文memo

Last updated at Posted at 2020-05-02

構文まとめ

名前空間

namespace 名前空間;
class クラス名{
    public function __construct(){
        print ("test");
    }
};

参考

PHPの基礎 参考サイト
https://www.atmarkit.co.jp/ait/series/1432/

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1