从root / index.php外部提供php方法

时间:2016-07-30 13:18:02

标签: php

我有一个问题,将一个函数暴露给其他php文件。我想允许另一个php文件从root / index.php或只是/index.php访问一个方法。但是,当我使用include('/ index.php')时,它包含当前目录中的index.php文件,即/search/index.php或/latest/index.php

最终我试图解决的是如何从root / mydirectory / index.php调用存储在我的/index.php文件中的方法:

//root/mydirectory/index.php
<?php
   include('/index.php');
    if (isset($_GET['id'])) {
    runMethod($log);//function i want to call, defined in regular /index.php file
} else {
}

?>
root / index.php中的

方法

function runMethod($log) {
}

有没有一种简单的方法可以在不使用global.php文件的情况下共享此方法,或者只是从root / index.php文件中公开该方法?

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:2)

包括您的文件

(old-define x 0)