LoginSignup
1
1

More than 5 years have passed since last update.

【PHP】PHP勉強の初期メモ(関数、外部ファイル読み込みとか)

Last updated at Posted at 2014-11-02

関数

関数とは・・・処理のまとまり

caluculate.php
function aPlusB($a, $b){
         $result = $a + $b ;
          return  $result; }
display.php
       include 'caluculate.php';
         $result = aPlusB(3,5) ;
         echo  $result; 

外部ファイルを読み込む時に

  • require_once(◎最もよく使う) メモリーにあれば1回実行で終わる
  • require   安心に毎回読みたい時
  • include
  • include_once

※includeはあまり使わない

サーバーのはなし

MACと仮想サーバーでは、Vagrantファイルは共通している
→基本的には、サーバーでapacheは「var/www/html」以下の階層をみる設定になっている!

もし、自動読み込みがしたければ、設定されているディレクトリを変更する。

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