PHP事前定義定数_FILE__
405 ワード
ディレクトリ構造:
--F:\website\webgis\index.php
テストコード:index.php
出力結果:
テスト出力_FILE__ F:\website\webgis\index.php F:\website\webgis
まとめ:_FILE__現在のファイルのパスを出力します.include(index.php)の場合、出力経路もF:websitewebgisindexである.php.
--F:\website\webgis\index.php
テストコード:index.php
echo "<br> __FILE__";
echo "<br>".__FILE__;
echo "<br>".dirname(__FILE__);
出力結果:
テスト出力_FILE__ F:\website\webgis\index.php F:\website\webgis
まとめ:_FILE__現在のファイルのパスを出力します.include(index.php)の場合、出力経路もF:websitewebgisindexである.php.