所以我有我的PHP文件接收文件,並保存它。工作正常。但是,我想它生成縮略圖,以及(使用http://abeautifulsite.net/blog/2009/08/cropping-an-image-to-make-square-thumbnails-in-php/)圖片上傳+縮略圖生成器
這裏是我當前的代碼:
<?php
$destination_path = getcwd().DIRECTORY_SEPARATOR . '/uploads/';
$result = 0;
$target_path = $destination_path . basename($_FILES['myfile']['name']);
if(@move_uploaded_file($_FILES['myfile']['tmp_name'], $target_path)) {
$result = 1;
square_crop($target_path, 'thumb.jpg');
}
?>
當我嘗試使用square_crop($target_path, 'thumb.jpg');
我上線得到了解析錯誤if($image[0] > $image[1]) {
我用錯了嗎?謝謝
如此明顯,我可能需要一些睡眠。感謝雖然:) – Johan
花了我一會兒才弄清楚起初:) –