2

我的问题是我尝试包含一个类,include_once();但不是包含所需的文件,而是将文件中的代码直接打印到源 html 中,以便代码出现在我的网页上。

这是代码:

<?
include_once('php/class.loadClients.php');
$client = new loadClient();
$client->connect();
?>

我不确定它为什么这样做,因为我include_once();在此页面的其他地方使用过它并且它工作正常:

include_once('php/class.register.php');

提前致谢!

4

2 回答 2

2

打开php/class.loadClients.php,并添加<?到它的开头。

于 2012-04-21T21:51:30.107 回答
1

添加到 Paulpro 的答案:如果他的解决方案不起作用,您的服务器可能没有启用短标签(<?vs <?php)。使用完整的<?php标签。

于 2015-07-15T15:16:47.980 回答