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.
如何跨文件获取全局数组?
我知道我可以将 $GLOBALS[''] 用于变量,但是数组甚至多维数组呢?我需要获取不在脚本同一文件中的数组的值!
只需简单地定义这些全局并将数组添加到它们..
global $somevariableName; somevariableName = array();
全局变量就像普通变量一样,您可以在其中存储任何内容。
现在从不同的脚本中获取它们,如果包含脚本,您应该能够 // 需要,如果您想要更广泛的内容,您可以使用数据库或会话。