index.php は私の php ファイルです。特定の URL を入力すると、index.php ファイルの内容がロードされます
ただし、現在デバッグに使用しているのは、「hello」というエコーです。 ";
ここで、index.php ファイルに HTML ファイルの 1 つを呼び出させる必要があります。これは、ページに表示したいコンテンツです;
これを呼び出す方法は? ?
include 来てください
file_get_contents('xxx.html');
include('xxx.html');
$str = file_get_contents('a.html');echo $str;
include require
include require