2

我正在尝试将图像移动到服务器端的 tmp 目录,然后将其从 tmp 文件夹发送到客户端,但事情并不完全正常。这是我目前拥有的。

//this is where the image resides permanently
$imgdirectory = "../" . $ms . "msimages/" . $img_filename;
//here I'm trying to get the contents of the img from its permanent location    
$content = file_get_contents($imgdirectory);
//here I'm trying to create a new temporary file
file_put_contents('/tmp/img.jpg', $content);

...

echo "img {background:url(\"/tmp/img.jpg\")-" . $xleft . "px -" . $ytop . "px";}"; this is the css trying to use file that is supposed to be in the temp folder

这是页面加载时我得到的css输出

img#{width:631px;height:453px;background:url("/tmp/img.jpg")-144px -112px;}

但不幸的是,没有文件,/tmp/img.jpg所以某些东西一定不能与file_put_contents 404 image not found

顺便说一句,我没有收到关于put contents/tmp 权限的任何错误,

任何建议表示赞赏。

4

1 回答 1

2

使用复制而不是读写文件

 bool copy ( string $source , string $dest [, resource $context ] )

file_put_contents('/tmp/img.jpg', $content);

将它放在根 tmp 目录下,而不是在您的站点 tmp 目录中。

尝试

file_put_contents($_SERVER["DOCUMENT_ROOT"] . 'tmp/img.jpg', $content);
于 2012-07-08T17:11:02.610 回答