我的问题是我尝试包含一个类,include_once();
但不是包含所需的文件,而是将文件中的代码直接打印到源 html 中,以便代码出现在我的网页上。
这是代码:
<?
include_once('php/class.loadClients.php');
$client = new loadClient();
$client->connect();
?>
我不确定它为什么这样做,因为我include_once();
在此页面的其他地方使用过它并且它工作正常:
include_once('php/class.register.php');
提前致谢!