How can I view/get system variables like $DOCUMENT_ROOT from inside a class?
here my Example:
<?php
// ---------------------
// OK
echo "OUTSIDE the CLASS: [" . $DOCUMENT_ROOT . "]<BR>";
// ---------------------
class test {
function test () {
// ---------------------
// KO
echo "INSIDE the CLASS: [" . $DOCUMENT_ROOT . "]<BR>";
// ---------------------
}
}
$t1 = new test();
?>
result:
OUTSIDE the CLASS: [/home/www/htdocs/]
INSIDE the CLASS: []
Thanks in advance