file:// — ローカルファイルシステムへのアクセス
   file:// is the default wrapper used with PHP and
   represents the local filesystem.
   When a relative path is specified (a path which does not begin with
   /, \, \\, or a
   Windows drive letter) the path provided will be applied against the current
   working directory. In many cases this is the directory in which the script
   resides unless it has been changed. Using the CLI
   SAPI, this defaults to the directory from which the
   script was called.
   PHP で使用されるデフォルトのラッパーは file:// で、
   これはローカルファイルシステムを表します。
   相対パス(/, \, \\, または Windows のドライブ文字で始まらないパス)が指定された場合、
   指定されたパスは、現在の作業ディレクトリに対して適用されます。
   多くの場合、これは、スクリプトがあるディレクトリです。ただし、カレントディレクトリが
   変更されている場合を除きます。
   CLI SAPI を使用した場合、このデフォルトはスクリプトがコールされたディレクトリとなります。
  
   fopen() や file_get_contents()
   のようないくつかの関数については、相対パスと同時に include_path
   も検索されます。
  
