Parameter type hint:
NULL
was kept.Both:
string
.No BC break using the “(type)” syntax. (Inspirated by Objective-C)
namespace foo; class test { } class bar { static public function (foo::test) testing($instance) { return $instance; } } bar::testing(new test); bar::testing(new stdClass); // Catchable fatal error: The returned value should be instance of foo::test
interface ITest { } class bar implements ITest { } class foo extends bar { } function (Itest) testing($instance) { return $instance; } testing(new bar); testing(new foo); testing(new stdClass); // Catchable fatal error: The returned value must implement interface Itest
interface ITest { public function (int) foo(); } class foo implements ITest { public function (int) foo() { return 'a'; } } $test = new foo; $test->foo(); // Catchable fatal error: The returned value must be of the type integer
interface ITest { public function (int) foo(); } class foo implements ITest { public function foo() { return 1; } } $test = new foo; $test->foo(); // Fatal error: Declaration of foo::foo() must be compatible with that of ITest::foo()
class test { // Fatal error: Return type hint can't be used with magic methods public function (int) __toString() { } }
function (int) test($value) { return $value; } test('1337'); // Catchable fatal error: The returned value must be of the type integer
-#define ZEND_ARG_ARRAY_INFO(pass_by_ref, name, allow_null) { {#name}, sizeof(#name)-1, {NULL}, 0, 1, allow_null, pass_by_ref, 0, 0 }, +#define ZEND_ARG_PHP_TYPE_INFO(pass_by_ref, name, php_type, allow_null) { {#name}, sizeof(#name)-1, {NULL}, 0, php_type, allow_null, pass_by_ref, 0, 0 },
function test(integer $value = '1') { } // Fatal error: Default value for parameters with integer type hint can only be the exact type or NULL
function test(integer $value) { } test(1); test(-1); test("1."); // Catchable fatal error: Argument 1 passed to test() must be of the type integer, string given ...
function test(double $value) { } test(1.1); test(.1); test("1."); // Catchable fatal error: Argument 1 passed to test() must be of the type double, string given
function test(bool $value = true) { } test(false); test(0); // Catchable fatal error: Argument 1 passed to test() must be of the type boolean, null given
function test(resource $value) { } test(fopen(__FILE__, 'r')); test(NULL); // Catchable fatal error: Argument 1 passed to test() must be of the type resource, null given
function test(object $value) { } test(new stdclass); test(NULL); // Catchable fatal error: Argument 1 passed to test() must be of the type object, null given