php - absolute url paths for localhost to file sytem -
i'm trying utilize absolute path set href of . path doesn't work, if alter relative path works fine.
works:
include_once('../../utils/utils/html/banner.html');
doesn't work:
include_once('http://localhost/apps/myvyn/utils/utils/html/banner.html'); include_once('/apps/myvyn/utils/utils/html/banner.html');
what doing wrong?
if want more of "absolute" path, can prepend include path $_server['document_root']. thought.
include_once($_server['document_root'] . '/apps/myvyn/utils/utils/html/banner.html');
php
No comments:
Post a Comment