imagestringup_error6.phpt 456 B

1234567891011121314151617
  1. --TEST--
  2. Testing error on non-string parameter 5 of imagestringup() of GD library
  3. --CREDITS--
  4. Rafael Dohms <rdohms [at] gmail [dot] com>
  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(180, 30);
  13. $result = imagestringup($image, 1, 5, 5, $image, 1);
  14. ?>
  15. --EXPECTF--
  16. Warning: imagestringup() expects parameter 5 to be string%S, %s given in %s on line %d