0

私はこのphpを持っています

www.example.com/template.php

そしてそれをindex.phpファイルに含めたい

sub.example.com/index.php

このサブドメインは、別のホストを持つ別のサーバー上にあります。

ご意見をお聞かせください。

4

1 に答える 1

0

ファイルの内容をphpファイルにダウンロードして、それを含めることができます。

$url = "http://sub.example.com/index.php";
$file = file_get_contents($url);
file_put_contents('index.php', $file);
include index.php;

index.php thoから名前を変更することをお勧めします。また、phpファイルを取得するときに最初に解析されていないことを確認してください。

これについても安全なことは何もありません。

編集:別のオプション、

allow_url_includeと呼ばれるphp.iniオプションがあります。

http://php.net/manual/en/features.remote-files.php

于 2012-11-27T04:22:33.293 に答える