我在Localhost上有一个完美的代码,但在主机上它无法正常工作。这只是一个功能......我检查的是:
数据库 - 一切都是一样的,只有主机不同。我有
create_page_header($row["author"],$row["category"], $row["title"],$row["picture"], $row["content"],$row["id"]);
function create_page_header(string $author_id,string $category,string $title,string $picture,string $content, string $id){...}
我使用var_dump()检查了参数的数量及其数据类型,它们是相同的。但是,在使用Localhost时,它无法在主机上运行。
有什么想法吗?