Я включаю PHP класс, как это
require_once(realpath($_SERVER["DOCUMENT_ROOT"]).'\xampp\htdocs\aclass\classfile.php');
но когда я выполнил код, выдается ошибка
Предупреждение: require_once (C: \ xampp \ htdocs \ xampp \ htdocs \ aclass \ classfile.php): не удалось открыть поток: в C: \ xampp \ htdocs \ aclass \ index.php нет такого файла или каталога 2
Неустранимая ошибка: require_once (): не удалось открыть обязательное 'C: \ xampp \ htdocs \ xampp \ htdocs \ aclass \ classfile.php' (include_path = 'C: \ xampp \ php \ PEAR') в C: \ xampp \ htdocs \ aclass \ index.php в строке 2
fileclass.php
<?php
class Test{
public function hello(){
echo "hello every one";
}
}
testclass.php
<?php
require_once (realpath($_SERVER["DOCUMENT_ROOT"]).'\xampp\htdocs\aclass\classfile.php');
$var=new Test();
$var->hello();
заранее спасибо !!