使用file-get-contents下载url内容

时间:2015-04-23 04:00:11

标签: php file-get-contents

我正在尝试从客户的网站上获取内容,并在经过一些处理后将其上传到我的网站。

我正在尝试使用file_get_contents来获取PHP环境中的内容。

如果我使用:

file_get_contents("http://www.maideden.com/index.php?route=product/product&path=59&product_id=96")

我能够获得所有内容。

但是,如果我使用变量来存储地址,如

$url = "http://www.maideden.com/index.php?route=product/product&path=59&product_id=96"

并使用file_get_contents($url);它没有返回任何内容。

任何人都可以帮我这个吗?我更愿意使用file_get_contents($url)

0 个答案:

没有答案