文件从另一个URL获取内容php

时间:2013-12-09 07:06:15

标签: php file-get-contents

简而言之,我正在使用此代码从其他网址获取内容

file_get_contents("http://www . xyz . net/data.php");

我面临的问题是,在上面的网址中,数据显示但是在一个巨大的空间之后 我想说的是,上面的url包含一个很大的空间然后数据,所以file_get_contents的过程需要花费很多时间,有什么建议可以改进它吗?

也许你可以通过这个截图链接了解:

Screenshot link

1 个答案:

答案 0 :(得分:1)

你可以这样做:

$YOUR_DATA_STRING = file_get_contents("http://www.xyz.net/data.php");    
$string = trim($YOUR_DATA_STRING);   //trim space,newline from start and end of data
$string = str_replace(array("\r", "\n", "\t"), '', $string)  //remove newline, tab from whole data string