1--TEST-- 2Testing error on string parameter for imagefontwidth() of GD library 3--CREDITS-- 4Rafael 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 12imagefontwidth('string'); 13?> 14--EXPECTF-- 15Warning: imagefontwidth() expects parameter 1 to be integer, %s given in %s on line %d 16