Этот вопрос вызван ошибкой, когда я пытаюсь использовать это в файле. У меня есть файл с классом для страницы:
class Page {
function whatHappen()
{
echo "this may work";
}
function helloWorld()
{
echo "This is my page!";
require( "usethis.php" ); // --> this works
similar_require( "usethis.php" ); // ---> with this I get an error
}
function write()
{
$this->helloWorld();
}
}
И функция, аналогичная требуемой:
function similar_require( $filepath )
{
require( $filepath );
}
В файле usethis.php у меня есть это:
<?php
$this->whatHappen();
?>
Как сделать работу Similar_require и требовать аналогичной функции?