所以我有我的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] ) {
我是以错误的方式使用它吗?感谢
答案 0 :(得分:4)
>
是>
的HTML实体 - 当我从网站复制代码时遇到了同样的问题 - 只需将>
的所有实例替换为>
,你很高兴去!
答案 1 :(得分:1)
不应该是>
而不是>
吗?