1--TEST-- 2Test trim() function : error conditions 3--FILE-- 4<?php 5 6/* Prototype : string trim ( string $str [, string $charlist ] ) 7 * Description: Strip whitespace (or other characters) from the beginning and end of a string. 8 * Source code: ext/standard/string.c 9*/ 10 11 12echo "*** Testing trim() : error conditions ***\n"; 13 14echo "\n-- Testing trim() function with no arguments --\n"; 15var_dump( trim() ); 16 17echo "\n-- Testing trim() function with more than expected no. of arguments --\n"; 18$extra_arg = 10; 19var_dump( trim("Hello World", "Heo", $extra_arg) ); 20 21 22$hello = " Hello World\n"; 23echo "\n-- Test trim function with various invalid charlists --\n"; 24var_dump(trim($hello, "..a")); 25var_dump(trim($hello, "a..")); 26var_dump(trim($hello, "z..a")); 27var_dump(trim($hello, "a..b..c")); 28 29?> 30===DONE=== 31--EXPECTF-- 32*** Testing trim() : error conditions *** 33 34-- Testing trim() function with no arguments -- 35 36Warning: trim() expects at least 1 parameter, 0 given in %s on line %d 37NULL 38 39-- Testing trim() function with more than expected no. of arguments -- 40 41Warning: trim() expects at most 2 parameters, 3 given in %s on line %d 42NULL 43 44-- Test trim function with various invalid charlists -- 45 46Warning: trim(): Invalid '..'-range, no character to the left of '..' in %s on line %d 47string(14) " Hello World 48" 49 50Warning: trim(): Invalid '..'-range, no character to the right of '..' in %s on line %d 51string(14) " Hello World 52" 53 54Warning: trim(): Invalid '..'-range, '..'-range needs to be incrementing in %s on line %d 55string(14) " Hello World 56" 57 58Warning: trim(): Invalid '..'-range in %s on line %d 59string(14) " Hello World 60" 61===DONE=== 62