对于 php 方面的事情......
包括/要求/include_once...
include 'http://www.example.com/yourfile.php';
实际上应该可以工作,除非您的服务提供商在安全方面投入了一些脑细胞。
文件获取内容
$homepage = file_get_contents('http://www.example.com/yourfile.php');
echo $homepage;
开放
$file = fopen ("http://www.example.com/yourfile.php", "r");
if (!$file) {
echo "<p>Unable to open remote file.\n";
exit;
}
while (!feof ($file)) {
$line = fgets ($file, 1024);
echo $line;
}
fclose($file);
卷曲
$url = 'http://www.example.com/yourfile.php';
$path = '/yourfile.php';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
echo $data;
curl_close($ch);
wget/curl 通过 shell 调用...
exec('wget http://example.com/yourpage.php', $array);
echo implode('<br />', $array);
有无数种方法..-很确定我忘记了一些-通过javascript(ajax / xhr),html5,iframe来做到这一点...