当我包含PHP文件时,我遇到了一些问题。我是第一次尝试这个,所以我真的不知道如何让它工作。当我包含某些内容时,PHP文件不再响应。这是一些代码:
<html>
<head>
<title>Testing opus class</title>
</head>
<body>
<?php
include('eedce5ed141dd72b552b7abdeb48ede3ddebc0c4.php');
$opus = new opus();
print "Test"; // It isn't printing "Test" over here
答案 0 :(得分:1)
检查错误报告是否有任何错误:
<?php
ini_set("display_errors", 1);
error_reporting(E_ALL);
?>
另外,请确保您在包含的文件中没有任何错误!