vote up 1 vote down star

Consider the following directory structure:

  • ROOT
  • ------ images
  • ............... logo.png
  • ------ includes
  • ............... vars.php
  • ------ layout
  • ............... content.php
  • ------ index.php

How do I define a path constant for logo.png in vars.php that is accessible in both index.php and content.php? Should be compatible with HTML Tags as a relative path.

<img src="<?php echo IMAGE_PATH; ?>">

which should be parsed as

<img src="images/logo.png"> <!-- if used in index.php -->

and

<img src="../images/logo.png"> <!-- if used in content.php -->

New Question (EDIT): Does root-relative path work when including php files using include / require methods?

flag

1  
You should use absolute paths. – rogeriopvl Sep 3 at 23:51
Why can't it be static? Why can't you always provide the absolute path? – Havenard Sep 3 at 23:52
But I get directory paths (like c:\Hosting\j349j\html\images\logo.png) which works fine for php includes but fails in html tags. Also, an absolute web-path such as domain.com/images/logo.png... i thought this was not a recommended way of including images/stylesheets. – gAMBOOKa Sep 3 at 23:54
@gAMBOOKa For images you should provide de full URL path, and not the filesystem path. Then it will work both in PHP and HTML img tags or css. – rogeriopvl Sep 3 at 23:56
Just put there /images/logo.png in all pages. Its going to work. – Havenard Sep 4 at 0:00
show 2 more comments

6 Answers

vote up 3 vote down check

Try setting the <base> tag in the <head> section of your code.

All your images, css, and js files will use this instead of the url in the address bar.

Info on base

link|flag
And url's would be like images/blah.png, without a leading /. – strager Sep 4 at 0:05
I like your thinking but in certain cases, where modular components are concerned, the paths might need to be relative to the module directory rather than the root directory. – gAMBOOKa Sep 4 at 0:05
@gAMBooka, your right but those cases probably occur less often and could be hard coded. – Scott Sep 4 at 0:10
But again, that's an absolute url and brings a dns lookup penalty that I'd like to avoid. Crap! I'm all confused now! – gAMBOOKa Sep 4 at 0:21
Note that changing the base URL will affect any relative URL and not just relative URLs with a relative URL path. – Gumbo Sep 4 at 12:39
vote up 0 vote down

I would use something like an application base URL:

define('APP_URL', 'http://example.com/path/to/app');
echo '<img src="'.APP_URL.IMAGE_PATH.'">';

Or to have it more convenient, write a function that resolves your relative URL to an absolute URL.

link|flag
vote up 0 vote down

simply specify all paths as relative to the root

<img src="/images/logo.png"> <!-- will work anywhere  -->
link|flag
vote up 1 vote down

You can use "root-relative" paths. Simply link to everything with a forward slash at the beginning, i.e.

<img src="/images/logo.png">

This will resolve to http://yoursite.com/images/logo.png from every page on yoursite.com.

link|flag
And called a 'root-relative' path (to the best of my knowledge, anyway). =) – ricebowl Sep 3 at 23:57
@ricebowl: No, it’s an absolute path. – Gumbo Sep 4 at 12:45
vote up 0 vote down

I'd suggest, primarily, that you use root-relative paths. This is only to reduce the complications of moving your site to another host, and also it allows for consistent paths (rather than using an if() condition to test from where the script's being run).

But otherwise, your suggestion would be fine.

link|flag
How do I get root-relative paths? – gAMBOOKa Sep 3 at 23:58
NVM, DisgruntledGoat answered it! – gAMBOOKa Sep 3 at 23:59
vote up 2 vote down

Absolute url or root paths will give you the least amount of headaces. Trust me, when the system grows you'll regret that setup.

It is a perfectly legal way to reference things. (as you ask in the comments)

If you're worried about setups between domains, just create a config variable with the absolute path to the domain / directory / etc

link|flag
Is there a reason you prefer absolute, as opposed to root-relative, paths? – ricebowl Sep 3 at 23:56
Setup between domains is not the issue. But doesn't using absolute paths for HTML tags (images/stylesheets) carry a performance penalty? – gAMBOOKa Sep 3 at 23:56
I believe it does, which is one of the reasons I prefer root-relative. – ricebowl Sep 3 at 23:58
2  
using absolute paths everywhere is always going to add weight to your pages (and css for that matter). Simply put, 'mydomain.com' is longer than '/' – Jamie Sep 3 at 23:59
I am talking about the concept in general. – Ólafur Waage Sep 4 at 0:04

Your Answer

Get an OpenID
or

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