Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1/2/3/file.php のようにファイルをインクルードすると、ファイルに次のよう<?php include ('../file2.php'); ?>に送信されます。1/2/3/../file2.php
<?php include ('../file2.php'); ?>
1/2/3/../file2.php
に送信するだけです../file2.php。../ を使用していないようです。また、ファイルは存在します。
../file2.php
使ってみてください__DIR__
__DIR__
<?php include (__DIR__.'../file2.php'); ?>
<?php include (__DIR__.'../file2.php'); ?