English 中文(简体)
利用S.C.S.S.R.,在本地断层取暖图像档案,但并非完全成功
原标题:using php to save remote images files at local sever but not completely successfully
  • 时间:2010-07-06 11:18:54
  •  标签:
  • php

我知道一些人已经问了这个问题,但我的传票是在下载遥远的图像档案时(每个档案尺寸都小于200KB)。 但是,有些卷宗胜出,无法全部保存。 某些档案无法保存,或一些档案得到保存,但并非100%,我将看到一些影像影像。 最糟糕的是,错误是不同的。

我尝试了以下方法节省档案。

  1. file_get_contents
  2. curl/GD
  3. copy

它都可以发挥作用,但我找不到挽救整个档案的完美方法。

以下是错误。

  1. failed to open stream: HTTP request failed! HTTP/1.0 408 Request Time-out in at line "copy"
  2. Maximum execution time of 60 seconds exceeded( I increase time)

我的php方案。

set_time_limit(60);

$imageArray=array(image array............);

for ($k=0;$k<count($imageArray);$k++){

echo  <img src=" .$imageArray[$k]. "><br/> ;

$isok=copy($imageArray[$k] , dirname(__FILE__). /photo/item_ .($k+1). .jpg );

if(isok==true){
   echo  success! ;  
}else{
  echo   Fail ;  
}
问题回答

这很可能是一个互联网问题。 当你尝试时,他们是否在浏览器上装上罚款? 如果是的话,你可以尝试在你的机器上操作该守则,看看这是否有助于。

但是,最可能的原因是你试图从遥远的地方下载——它能够因每次间歇而使你窒息。 在图像之间睡觉,例如5-6秒,看看看这是否有助于。

另外,还试图下载较小的图像集——一至二,以了解图像是否发挥作用。

我在您的复印件中注意到,你在目的地产出中硬编码。 您是否总是上载......jpg ,好像你正在上载......png 或 .gif,并迫使它去做。 只是一个诚实的想法。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签