0

PHPを使用して結合したい一連のhtmlドキュメントがあります。HTML ドキュメントのコンテンツを読み込んで、それらをすべて 1 つのドキュメントに表示する必要があります。これを達成するにはどうすればよいですか?

4

3 に答える 3

1

Forget require, require_once and include_once and just use include which is the most performance function.

include_once and require_once are there to prevent circular dependencies, surely not for HTML; and require will throw a fatal error instead of an E_WARNING but will take more time.

You can aswell get the content in a buffer with:

$buffer = file_get_contents('index.html');

and decide when to echo it yourself. Or you can finally use ob_* functions to get the buffer:

ob_start():
include('index.html');
$buffer = ob_get_contents();
于 2013-01-22T12:44:07.563 に答える
0

include、include_once、require、require_once を使用し、メイン ドキュメントにファイルを追加する

参照: http://php.net/manual/en/function.require-once.php

于 2013-01-22T12:37:15.350 に答える
-1
<?php

$files = array('file1.html','file2.html','file3.html');
foreach($files as $file) require_once $file;

またはrequire、同じファイルを複数回インクルードする場合に使用します。

于 2013-01-22T12:40:16.730 に答える