1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/ext/gd/tests/imagestring_error5.phpt
2009-07-01 00:56:01 +00:00

18 lines
454 B
PHP

--TEST--
Testing error on non-long parameter 4 of imagestring() of GD library
--CREDITS--
Rafael Dohms <rdohms [at] gmail [dot] com>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php
$image = imagecreatetruecolor(180, 30);
$result = imagestring($image, 1, 5, 'string', 'String', 1);
?>
--EXPECTF--
Warning: imagestring() expects parameter 4 to be long, %s given in %s on line %d