0

我看到 http://xooplate.com/templates/download/13693返回一个文件。我用过

$ch = curl_init("http://xooplate.com/templates/download/13693");
$fp = fopen("example_homepage.zip", "w");

curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);

curl_exec($ch);
curl_close($ch);
fclose($fp);


function get_include_contents($filename) {
    if (is_file($filename)) {
        ob_start();
        include $filename;
        $contents = ob_get_contents();
        ob_end_clean();
        return $contents;
    }
    return false;
}
$string = get_include_contents('http://xooplate.com/templates/download/13693');

但不工作,我期待一个帮助,谢谢大家

4

1 回答 1

0

更新答案:

嘿伙计,我检查了那个网站。他们在下载按钮(widget.js第 27 行)上放置了 onClick jQuery 方法,具有后域安全性。我试图触发 onClick事件,但由于域检查安全功能服务器只允许http://www.stumbleupon.comhttp://xooplate.com使用 AJAX 发布数据。所以不可能使用 curl 或 PHPDOM。对不起。:) 非常安全。

下面的解决方案不是答案!

嗨,我找到了一个使用PHP Simple HTML DOM Library的解决方案。只需下载它并使用以下代码

<?php
include("simple_html_dom.php");
$html = file_get_html('http://xooplate.com/templates/details/13693-creative-circular-skills-ui-infographic-psd');


foreach($html->find('a[class=btn_green nturl]') as $element) 
       echo $element->href . '<br>';
?>
于 2013-01-27T21:27:47.127 回答