图片上传+缩略图生成器

时间:2011-12-10 23:17:39

标签: php image

所以我有我的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] &gt; $image[1] ) {

上收到了解析错误

我是以错误的方式使用它吗?感谢

2 个答案:

答案 0 :(得分:4)

&gt;>的HTML实体 - 当我从网站复制代码时遇到了同样的问题 - 只需将&gt;的所有实例替换为>,你很高兴去!

答案 1 :(得分:1)

不应该是>而不是&gt;吗?