vote up 0 vote down star

I know that it is poor performance to use relative paths when including a file in php. But, is this true for for all paths or just paths relative to the assumed (context) include path?

Is this line

require '/home/../http/test.php'

as fast as this line

require '/http/test.php'
flag

71% accept rate

2 Answers

vote up 2 vote down check

Basically yes. These paths are basically resolved first by php/apache then operating system.

link|flag
vote up 1 vote down

Either ways, an organized structure far out-weighs the small penalty spent on parsing a longer string.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.