The situation is as follows: such code
include("/../../block.php");
Writing there is no file. I wrote differently:
include("../../block.php");
File not found anyway. Decided otherwise:
include(__DIR\__."/../../block.php");
Bingo! Raboat! So why did this happen? It seems that the options are identical. What is the problem?