sdfgg45
sdfgg45

Reputation: 1242

How to get/set correct relative paths in PHP with a lot of directories?

I have a problem finding the right path for a file. Here is my example. (I run Windows and WAMP)

My main file is placed here:

/homedir/subdir2/subdir3/index.php

It has to look for the file placed here:

/homedir/subdir1/images/slides/image.png

My code is:

/homedir/subdir2/subdir3/../subdir1/images/slides/image.png

Upvotes: 0

Views: 36

Answers (2)

Apul Gupta
Apul Gupta

Reputation: 3034

Your code should be:

/homedir/subdir2/subdir3/../../subdir1/images/slides/image.png

Note double ../ here.

Upvotes: 0

MatejG
MatejG

Reputation: 1423

Go up twice to get to /homedir/

../../subdir1/images/slides/image.png

Upvotes: 1

Related Questions