請問各位前輩:
現階段我有 a.php 傳值進去 b.php
a.php:
<a href="b.php?b=2">send</a>
b.php:
<?
$b=$_POST["test"];
echo $b;
?>
如今我想在c.php下 取得b.php產生的html原始碼
c.php:
<?php
$url="b.php?b=2";
$fs=file_get_contents($url);
?>
<textarea><?php echo $fs;?></textarea>
可是無法順利取得b.php?b=2 的網頁原始碼,想請問一下要如何取得
由php產生的動態網頁原始碼呢??謝謝
http://www.player.idv.tw/prog/index.php/HttpClient.php
你參考看看
除了Cookie與Session
在這個 class HttpClient
還不通以外
其它的功能應該算是正常可用
$url裡面的字串沒有用「http://」開頭,他不會知道這個是url。這裡沒辦法用相對路徑來處理。
<?php
function file_post_contents($url,$headers=false) {
$url = parse_url($url);
if (!isset($url['port'])) {
if ($url['scheme'] == 'http') { $url['port']=80; }
elseif ($url['scheme'] == 'https') { $url['port']=443; }
}
$url['query']=isset($url['query'])?$url['query']:'';
$url['protocol']=$url['scheme'].'://';
$eol="\r\n";
$headers = "POST ".$url['protocol'].$url['host'].$url['path']." HTTP/1.0".$eol.
"Host: ".$url['host'].$eol.
"Referer: ".$url['protocol'].$url['host'].$url['path'].$eol.
"Content-Type: application/x-www-form-urlencoded".$eol.
"Content-Length: ".strlen($url['query']).$eol.
$eol.$url['query'];
$fp = fsockopen($url['host'], $url['port'], $errno, $errstr, 30);
if($fp) {
fputs($fp, $headers);
$result = '';
while(!feof($fp)) { $result .= fgets($fp, 128); }
fclose($fp);
if (!$headers) {
//removes headers
$pattern="/^.*\r\n\r\n/s";
$result=preg_replace($pattern,'',$result);
}
return $result;
}
}
?>