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.
即使文件是引号,下面的gettng是我正在使用的文件,并且该行是实际函数声明的确切行?
致命错误:无法重新声明 sortByTest()(之前在 ."file"... line .."123" 中声明
这只是意味着您要包含该文件两次。第一次包含在内,一切都很好。下一次包含它时,PHP 再次检查该文件,到达“function sortByTest(...)”声明,然后它进入 BOOM,因为它已经在内存中定义了该函数。
要解决此问题,请将包含文件的部分更改为以下之一:
include_once "..." or require_once "..."
我建议require_once它不是视图模板文件。
require_once