0

我正在尝试将保存在 url 中的图像下载到本地文件夹,并使用 curl 进行了以下尝试。我想知道是否有必要包含 curl 或单独下载它,或者我的功能是否可以正常工作。我想知道我在下面的实现是否有任何明显的问题。我知道 sql 漏洞,我正在切换到准备好的语句。为简洁起见,我已经修剪了代码的不相关部分。

编辑:函数不在while循环中。如果我注释掉该函数的调用,该页面就会显示,否则我只会得到一个空白页面。为什么是这样

<?php
header("Content-Type: text/html; charset=utf-8");
if (isset($_GET["cmd"]))

  $cmd = $_GET["cmd"];

else

  die("You should have a 'cmd' parameter in your URL");

 $pk = $_GET["pk"];

$con = mysql_connect("localhost","someuser","notreal");

if(!$con)

{

die('Connection failed because of' .mysql_error());

}
mysql_query('SET NAMES utf8'); 

mysql_select_db("somedb",$con);

if($cmd=="GetAuctionData")

{

$sql="SELECT * FROM AUCTIONS WHERE ARTICLE_NO ='$pk'";

$sql2="SELECT ARTICLE_DESC FROM AUCTIONS WHERE ARTICLE_NO ='$pk'";

$htmlset = mysql_query($sql2);

$row2 = mysql_fetch_array($htmlset);



$result = mysql_query($sql);

function savePicture($imageUrl) {
    $ch = curl_init();
    curl_setopt ($ch, CURLOPT_URL, $lastImg);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 0);
    $fileContents = curl_exec($ch);
    curl_close($ch);
    $newImg = imagecreatefromstring($fileContents);
    return imagejpeg($newImg, "./{$pk}.jpg",100);
}

while ($row = mysql_fetch_array($result))
{



$lastImg = $row['PIC_URL']; 


savePicture($lastImg);


<div id='rightlayer'>

<img src='./".$pk.".jpg' width='".$outputWidth."' height='".$outputHeight."'>


</div>

</div>

</div>";



}



}

mysql_free_result($result);
4

2 回答 2

1

如果在循环运行多次时在循环内声明函数,则会出现错误。所以你应该在savePicture外面声明这个函数while

于 2009-01-21T13:59:11.157 回答
0

我会将函数定义从 while 块中取出。

在我看来,您使用 curl 是为了在这里使用 curl,更简单的方法是使用file get contents

于 2009-01-21T13:56:53.970 回答