我的PHP脚本有这个错误:


  致命错误:在第20行的C:\ xampp \ htdocs \ AdultWatch \ index.php中找不到类'STemplate'


我在Windows中使用xampp,但我不知道为什么会出现此错误。

我的index.php/config.php(包括)File Here

最佳答案

您正在第67行上调用assign()类的STemplate函数,但忘记在其之前声明STemplate类。

STemplate::assign($field, strip_mq_gpc($config[$field]));


类声明语法应为

$STemplate = new ClassName();

10-07 23:16