--TEST-- Test substr_count() function (error conditions) --FILE-- size of the string */ var_dump(substr_count($str, "t", 25)); /* Using offset and length to go beyond the size of the string: Warning message expected, as length+offset > length of string */ var_dump( substr_count($str, "i", 5, 7) ); /* Invalid offset argument */ var_dump( substr_count($str, "t", "") ); /* length too small */ var_dump( substr_count($str, "t", 2, -20) ); echo "Done\n"; ?> --EXPECTF-- *** Testing error conditions *** Warning: substr_count() expects at least 2 parameters, 0 given in %s on line %d NULL Warning: substr_count() expects at most 4 parameters, 5 given in %s on line %d NULL Warning: substr_count(): Offset not contained in string in %s on line %d bool(false) Warning: substr_count(): Offset not contained in string in %s on line %d bool(false) Warning: substr_count(): Invalid length value in %s on line %d bool(false) Warning: substr_count() expects parameter 3 to be integer, string given in %s on line %d NULL Warning: substr_count(): Invalid length value in %s on line %d bool(false) Done