here an Example
<?php
echo "OUTSIDE the CLASS: [" . $DOCUMENT_ROOT . "]<BR>";
class test {
function test () {
echo "INSIDE the CLASS: [" . $DOCUMENT_ROOT . "]<BR>";
}
}
$t1 = new test();
?>
result:
OUTSIDE the CLASS: [/home/www/htdocs/]
INSIDE the CLASS: []