代码后面的问题是什么?
include_once("theme/login_theme/$loginTheme/landing_first.php");
代码在我的localhost中工作正常但是当我从在线服务器上传我的文件时,这段代码不起作用。这有什么问题?
答案 0 :(得分:1)
要查看错误,请尝试require_once而不是include_once, 一般情况下,如果代码在您需要检查的服务器上不起作用的情况: 性格案例 该文件是否存在 字符串和变量
require_once("./theme/login_theme/".$loginTheme."/landing_first.php");
希望这会有所帮助,