如何使函数保留原始URL而不定义它

时间:2016-04-29 14:18:53

标签: php function include

我有两个文件。

  

file1.php

  

/gallery/file2.php

file1.php 具有打印当前网址的函数showUrl(); file2.php 包含 file1.php 如果该功能在 file2.php 中执行,它将打印 file2.php 的目录

如何使用 file1.php 中的函数打印 file2.php 中的 file1.php 的网址,而不定义它因为URL可以更改而无法定义?

1 个答案:

答案 0 :(得分:0)

试试这个:

file1.php

echo __FILE__;

file2.php

echo __FILE__;
include "../../file1.php" //or other path where your file1.php is located