-1

我正在创建一个 PHP 文件,其中我正在压缩存在于服务器文件夹中的图像(使用 php func)并将压缩文件放入另一个文件夹中。现在的问题是我需要为两个文件夹指定路径,对于源文件夹,我只是给出了:

HTTP://ipadrs/images/properties/thumbs_400/image_name (given "http "as HTTP purposely)

我使用函数检查了图像是否存在于文件夹中fopen,并且工作正常。我还在 thumbs_400 之后给出了相同的路径,并在其后附加了“/compress_50/”,但图像没有在 resp 文件夹中被压缩;相同的 {H{ 文件在 localhost 中运行良好。

谁能告诉我为什么会发生这种情况以及解决方案是什么?

编辑:( 评论中发布的代码)

$img = HOME."images/properties/thumbs_400/".$sqlrow['plan_image_name']." "; 
$handle = fopen($img, "r"); 

if ($handle) { 
    $dest = HOME."images/properties/thumbs_400/compress_50/".$sqlrow['plan_image_name']." ";
4

1 回答 1

0

除非是打字错误,否则替换:

HTTP//ipadrs/images/properties/thumbs_400/image_name

和:

http://ipadrs/images/properties/thumbs_400/image_name
于 2013-09-05T13:19:27.757 回答