1--TEST-- 2Testing wrong param passing imagefilledarc() of GD library 3--CREDITS-- 4Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br> 5#testfest PHPSP on 2009-06-20 6--SKIPIF-- 7<?php 8if (!extension_loaded("gd")) die("skip GD not present"); 9?> 10--FILE-- 11<?php 12 13$image = imagecreatetruecolor(100, 100); 14 15$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); 16 17//create an arc and fill it with white color 18imagefilledarc($image, 50, 50, 30, 30, 0, 90, $white); 19 20ob_start(); 21imagepng($image); 22$img = ob_get_contents(); 23ob_end_clean(); 24 25echo md5(base64_encode($img)); 26?> 27--EXPECTF-- 28Warning: imagefilledarc() expects exactly 9 parameters, 8 given in %s on line %d 29abebb25b5a2813cfbf92f1f24365786a 30