imagefontwidth_basic.phpt 376 B

12345678910111213141516171819
  1. --TEST--
  2. Testing imagefontwidth() of GD library
  3. --CREDITS--
  4. Rafael Dohms <rdohms [at] gmail [dot] com>
  5. #testfest PHPSP on 2009-06-20
  6. --EXTENSIONS--
  7. gd
  8. --FILE--
  9. <?php
  10. var_dump(imagefontwidth(1),imagefontwidth(2),imagefontwidth(3),imagefontwidth(4),imagefontwidth(5));
  11. var_dump(imagefontwidth(1) < imagefontwidth(5));
  12. ?>
  13. --EXPECT--
  14. int(5)
  15. int(6)
  16. int(7)
  17. int(8)
  18. int(9)
  19. bool(true)