我收到一个奇怪的错误?

时间:2015-09-22 23:07:31

标签: php image

所以当我不应该收到这个错误时,我会收到这个奇怪的错误吗?任何人都可以帮助我吗?

错误:

  

解析错误:语法错误,意外&#39 ;;'在   第9行/home1/hclearne/public_html/database/include/image/16.php

代码:

<?php 
$img = imagecreatefrompng( 'http://i.imgur.com/7MULEJs.png' );
$test = imagecolorallocate($img, 0, 255, 0);

imagestring($img, 5, 250, 45, 'UID: $UID', $test );
imagestring($img, 4, 250, 65, 'Rating: $input ', $test );

header('Content-type: image/png');
imagepng(imagecreatefrompng($img);
imagecolordeallocate($img, 0, 255, 0);
imagecolordeallocate($img, 32, 32, 32);
imagedestroy($img);
?>

1 个答案:

答案 0 :(得分:2)

这没有什么奇怪的错误,您还没有关闭imagepng()功能,但是您错过了结束)

imagepng(imagecreatefrompng($img));

因此为什么它会说&#34;意外&#39;&#39;&#34;&#34; - 因为它期待右括号; - )