偷别的站也是一个道理.关键是方法.小偷就是用ASP,PHP或者其他语言在程序中打开并且处理这些HTML
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | error_reporting (E_ALL&~E_NOTICE);
$url = http:
$fp = @ fopen ( $url , "r" ) or die ( "超时" );
$fcontents = file_get_contents ( $fp );
$str_html = "/(.*)/ " ;
preg_match( $str_html , $fcontents , $regs );
$regs [1] = str_replace ( "src=\"..\/images\/" , "src=\"http://www.xxxcom\/images\/" , $regs [1]);
echo $regs [1];
|
로그인 후 복사