php在这个服务器的PHP文件去执行远程的PHP
如果你的服务器在phpini文件中激活了allow_url_fopen 选项,你可以使用以下的语句:
$page_url="http://wwwbaiducom/1php";
$contents = file_get_contents($page_url);
否则,你可以参考下面的例子
获取远程文件的标题
<php
$file = fopen ("http://wwwexamplecom/", "r");
if (!$file) {
echo "<p>Unable to open remote file\n";
exit;
}
while (!feof ($file)) {
$line = fgets ($file, 1024);
/ This only works if the title and its tags are on one line /
if (eregi ("<title>()</title>", $line, $out)) {
$title = $out[1];
break;
}
}
fclose($file);
>
你可以在httpdconf里找到类似如下的配置,然后将代码里的Indexs去掉,然后重启apache就可以了。
<Directory "/usr/local/www/">Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
0条评论