Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试做一个包含(dirname(FILE),'/../file.php?variable=VAR'),但是当我使用变量时它无法找到位置。
该目录位于文件所在的当前目录的上一层。是否可以通过包含传递变量?
你不能,尽管你根本不需要这个,因为$_GET' 的范围是全局的[即可以从你运行的每个脚本访问]。
$_GET
只是要清楚:
include($path)在文件系统中搜索资源,然后对其进行处理。
include($path)
http://somesite.com/index.php?key=value是一个 URL,其?符号后的部分称为query。
http://somesite.com/index.php?key=value
?
不。
通过使用包含,您可以按原样包含文件中的源代码。我猜你想在包含的文件中定义一个函数并调用它来获得结果。