imageinterlace_error1.phpt 474 B

1234567891011121314151617181920
  1. --TEST--
  2. Testing passing no parameters to imageinterlace() of GD library
  3. --CREDITS--
  4. Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
  5. #testfest PHPSP on 2009-06-20
  6. --SKIPIF--
  7. <?php
  8. if (!extension_loaded("gd")) die("skip GD not present");
  9. ?>
  10. --FILE--
  11. <?php
  12. $image = imagecreatetruecolor(100, 100);
  13. //calling with no parameters
  14. var_dump(imageinterlace());
  15. ?>
  16. --EXPECTF--
  17. Warning: imageinterlace() expects at least 1 parameter, 0 given in %s on line %d
  18. NULL