--TEST-- Scalar type strict mode --SKIPIF-- --FILE-- function (int $i) { return $i; }, 'float' => function (float $f) { return $f; }, 'string' => function (string $s) { return $s; }, 'bool' => function (bool $b) { return $b; } ]; class Stringable { public function __toString() { return "foobar"; } } $values = [ 1, "1", 1.0, 1.5, "1a", "a", "", PHP_INT_MAX, NAN, TRUE, FALSE, NULL, [], new StdClass, new Stringable, fopen("data:text/plain,foobar", "r") ]; foreach ($functions as $type => $function) { echo PHP_EOL, "Testing '$type' type:", PHP_EOL; foreach ($values as $value) { echo PHP_EOL . "*** Trying "; var_dump($value); try { var_dump($function($value)); } catch (TypeError $e) { echo "*** Caught " . $e->getMessage() . PHP_EOL; } } } echo PHP_EOL . "Done"; ?> --EXPECTF-- Testing 'int' type: *** Trying int(1) int(1) *** Trying string(1) "1" *** Caught Argument 1 passed to {closure}() must be of the type int, string given, called in %s on line %d *** Trying float(1) *** Caught Argument 1 passed to {closure}() must be of the type int, float given, called in %s on line %d *** Trying float(1.5) *** Caught Argument 1 passed to {closure}() must be of the type int, float given, called in %s on line %d *** Trying string(2) "1a" *** Caught Argument 1 passed to {closure}() must be of the type int, string given, called in %s on line %d *** Trying string(1) "a" *** Caught Argument 1 passed to {closure}() must be of the type int, string given, called in %s on line %d *** Trying string(0) "" *** Caught Argument 1 passed to {closure}() must be of the type int, string given, called in %s on line %d *** Trying int(9223372036854775807) int(9223372036854775807) *** Trying float(NAN) *** Caught Argument 1 passed to {closure}() must be of the type int, float given, called in %s on line %d *** Trying bool(true) *** Caught Argument 1 passed to {closure}() must be of the type int, bool given, called in %s on line %d *** Trying bool(false) *** Caught Argument 1 passed to {closure}() must be of the type int, bool given, called in %s on line %d *** Trying NULL *** Caught Argument 1 passed to {closure}() must be of the type int, null given, called in %s on line %d *** Trying array(0) { } *** Caught Argument 1 passed to {closure}() must be of the type int, array given, called in %s on line %d *** Trying object(stdClass)#5 (0) { } *** Caught Argument 1 passed to {closure}() must be of the type int, object given, called in %s on line %d *** Trying object(Stringable)#6 (0) { } *** Caught Argument 1 passed to {closure}() must be of the type int, object given, called in %s on line %d *** Trying resource(5) of type (stream) *** Caught Argument 1 passed to {closure}() must be of the type int, resource given, called in %s on line %d Testing 'float' type: *** Trying int(1) float(1) *** Trying string(1) "1" *** Caught Argument 1 passed to {closure}() must be of the type float, string given, called in %s on line %d *** Trying float(1) float(1) *** Trying float(1.5) float(1.5) *** Trying string(2) "1a" *** Caught Argument 1 passed to {closure}() must be of the type float, string given, called in %s on line %d *** Trying string(1) "a" *** Caught Argument 1 passed to {closure}() must be of the type float, string given, called in %s on line %d *** Trying string(0) "" *** Caught Argument 1 passed to {closure}() must be of the type float, string given, called in %s on line %d *** Trying int(9223372036854775807) float(9.2233720368548E+18) *** Trying float(NAN) float(NAN) *** Trying bool(true) *** Caught Argument 1 passed to {closure}() must be of the type float, bool given, called in %s on line %d *** Trying bool(false) *** Caught Argument 1 passed to {closure}() must be of the type float, bool given, called in %s on line %d *** Trying NULL *** Caught Argument 1 passed to {closure}() must be of the type float, null given, called in %s on line %d *** Trying array(0) { } *** Caught Argument 1 passed to {closure}() must be of the type float, array given, called in %s on line %d *** Trying object(stdClass)#5 (0) { } *** Caught Argument 1 passed to {closure}() must be of the type float, object given, called in %s on line %d *** Trying object(Stringable)#6 (0) { } *** Caught Argument 1 passed to {closure}() must be of the type float, object given, called in %s on line %d *** Trying resource(5) of type (stream) *** Caught Argument 1 passed to {closure}() must be of the type float, resource given, called in %s on line %d Testing 'string' type: *** Trying int(1) *** Caught Argument 1 passed to {closure}() must be of the type string, int given, called in %s on line %d *** Trying string(1) "1" string(1) "1" *** Trying float(1) *** Caught Argument 1 passed to {closure}() must be of the type string, float given, called in %s on line %d *** Trying float(1.5) *** Caught Argument 1 passed to {closure}() must be of the type string, float given, called in %s on line %d *** Trying string(2) "1a" string(2) "1a" *** Trying string(1) "a" string(1) "a" *** Trying string(0) "" string(0) "" *** Trying int(9223372036854775807) *** Caught Argument 1 passed to {closure}() must be of the type string, int given, called in %s on line %d *** Trying float(NAN) *** Caught Argument 1 passed to {closure}() must be of the type string, float given, called in %s on line %d *** Trying bool(true) *** Caught Argument 1 passed to {closure}() must be of the type string, bool given, called in %s on line %d *** Trying bool(false) *** Caught Argument 1 passed to {closure}() must be of the type string, bool given, called in %s on line %d *** Trying NULL *** Caught Argument 1 passed to {closure}() must be of the type string, null given, called in %s on line %d *** Trying array(0) { } *** Caught Argument 1 passed to {closure}() must be of the type string, array given, called in %s on line %d *** Trying object(stdClass)#5 (0) { } *** Caught Argument 1 passed to {closure}() must be of the type string, object given, called in %s on line %d *** Trying object(Stringable)#6 (0) { } *** Caught Argument 1 passed to {closure}() must be of the type string, object given, called in %s on line %d *** Trying resource(5) of type (stream) *** Caught Argument 1 passed to {closure}() must be of the type string, resource given, called in %s on line %d Testing 'bool' type: *** Trying int(1) *** Caught Argument 1 passed to {closure}() must be of the type bool, int given, called in %s on line %d *** Trying string(1) "1" *** Caught Argument 1 passed to {closure}() must be of the type bool, string given, called in %s on line %d *** Trying float(1) *** Caught Argument 1 passed to {closure}() must be of the type bool, float given, called in %s on line %d *** Trying float(1.5) *** Caught Argument 1 passed to {closure}() must be of the type bool, float given, called in %s on line %d *** Trying string(2) "1a" *** Caught Argument 1 passed to {closure}() must be of the type bool, string given, called in %s on line %d *** Trying string(1) "a" *** Caught Argument 1 passed to {closure}() must be of the type bool, string given, called in %s on line %d *** Trying string(0) "" *** Caught Argument 1 passed to {closure}() must be of the type bool, string given, called in %s on line %d *** Trying int(9223372036854775807) *** Caught Argument 1 passed to {closure}() must be of the type bool, int given, called in %s on line %d *** Trying float(NAN) *** Caught Argument 1 passed to {closure}() must be of the type bool, float given, called in %s on line %d *** Trying bool(true) bool(true) *** Trying bool(false) bool(false) *** Trying NULL *** Caught Argument 1 passed to {closure}() must be of the type bool, null given, called in %s on line %d *** Trying array(0) { } *** Caught Argument 1 passed to {closure}() must be of the type bool, array given, called in %s on line %d *** Trying object(stdClass)#5 (0) { } *** Caught Argument 1 passed to {closure}() must be of the type bool, object given, called in %s on line %d *** Trying object(Stringable)#6 (0) { } *** Caught Argument 1 passed to {closure}() must be of the type bool, object given, called in %s on line %d *** Trying resource(5) of type (stream) *** Caught Argument 1 passed to {closure}() must be of the type bool, resource given, called in %s on line %d Done