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 関数は同一ファイル内であれば宣言より前に記述しても呼び出し可能。呼び出しは大文字と小文字を区別しない。

Last updated at Posted at 2021-03-29

関数の呼び出しについてのメモ

例)

<?php 
<?php 
echo "上です\n";
hoge();

function hoge(){
    echo "hogeですファイル内から呼べます\n";
    echo "関数は同一ファイルであれば宣言より前に記述しても呼べます\n";
}

echo "下です\n";
hoge();

echo "関数は大文字と小文字を区別しない\n";
HOGE();

echo "小文字と大文字を混ぜても平気\n";
hoGe();

/*
上です
hogeですファイル内から呼べます
関数は同一ファイルであれば宣言より前に記述しても呼べます
下です
hogeですファイル内から呼べます
関数は同一ファイルであれば宣言より前に記述しても呼べます
関数は大文字と小文字を区別しない
hogeですファイル内から呼べます
関数は同一ファイルであれば宣言より前に記述しても呼べます
小文字と大文字を混ぜても平気
hogeですファイル内から呼べます
関数は同一ファイルであれば宣言より前に記述しても呼べます
*/

宣言の前後で関数が呼び出せていることを確認できる。

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?