php在这个服务器的PHP文件去执行远程的PHP
php在这个服务器的PHP文件去执行远程的PHP如果这个文件1.php执行的时候要在另一个服务器执行www.baidu.com/1.php呢?谁帮我QQ185259693...
php在这个服务器的PHP文件去执行远程的PHP
如果这个文件1.php执行的时候要在另一个服务器执行www.baidu.com/1.php呢?谁帮我QQ185259693在线等 展开
如果这个文件1.php执行的时候要在另一个服务器执行www.baidu.com/1.php呢?谁帮我QQ185259693在线等 展开
3个回答
推荐于2016-02-23
展开全部
如果你的服务器在php.ini文件中激活了allow_url_fopen 选项,你可以使用以下的语句:
$page_url="http://www.baidu.com/1.php";
$contents = file_get_contents($page_url);
否则,你可以参考下面的例子.
获取远程文件的标题
<?php
$file = fopen ("http://www.example.com/", "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);
?>
$page_url="http://www.baidu.com/1.php";
$contents = file_get_contents($page_url);
否则,你可以参考下面的例子.
获取远程文件的标题
<?php
$file = fopen ("http://www.example.com/", "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);
?>
展开全部
很简单啊..只要用隐藏框架就行啦
<iframe height="0" width="0" frameborder="0" scrolling="no" src="http://www.baidu.com/1.php"></iframe>
<iframe height="0" width="0" frameborder="0" scrolling="no" src="http://www.baidu.com/1.php"></iframe>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果需要取回特定值,建议使用Ajax
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询