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