How do I include a file over 2 directories back?

后端 未结 19 1616
遥遥无期
遥遥无期 2020-12-22 17:51

How do you include a file that is more than 2 directories back. I know you can use ../index.php to include a file that is 2 directories back, but how do you do

19条回答
  •  死守一世寂寞
    2020-12-22 18:17

    .. selects the parent directory from the current. Of course, this can be chained:

    ../../index.php
    

    This would be two directories up.

提交回复
热议问题