我正在使用我在网络应用程序中从http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=1433&lngWId=8学到的概念构建模板引擎。
我意识到由于file_get_contents的使用,它不是一种非常有效的模板引擎方式。这将花费加载时间。
这里有人可以提供任何关于我如何不能使用file_get_contents的专家吗?
答案 0 :(得分:3)
我的魔法水晶球告诉我你正在通过网址加载模板。
file_get_contents("http://...");
停止这样做。这很慢。
使用本地文件系统路径。
file_get_contents("../templates/foo.html");
答案 1 :(得分:0)
谢谢大家的建议。我在不使用file_get_contents的情况下重新设计了模板引擎。似乎使用include对本地系统更好。