0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PHPの基本関数!別ファイルを呼び出す方法[修正が楽になる]

Posted at

##はじめに
WEBサイトを製作する際、複数ページありますよね。
同じコードを何度もベタ書きしてないですか?

例えば
「ヘッダー」や「メニュー」や「サイドバー」や「フッター」とかとか、、、

他でも使いまわせる部分は「example.php」とかにして
それを別ファイルに読み込んでくるようにすると

修正があっても
「example.php」ファイルを編集するだけで読み込んでいる全ページに反映されます。

##PHP関数
主に下記の2通りの方法があります。

「include」or「require」関数を使います。

###include関数

php
<?php include("ファイルのパス"); ?>

###require関数

php
<?php require("ファイルのパス"); ?>

ファイルパスのところは
ご自身の環境に合わせて下さい。

以上!!
ではよきエンジニアライフを!

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?