[php-src] Issue #21677: Special type `undefined`
[email protected] (gzhegow1991)
| Newsgroups | php.bugs |
|---|---|
| Message-ID | <[email protected]> |
Issue: https://github.com/php/php-src/issues/21677
Author: gzhegow1991
### Description
Undefined === null; // true
function my_function($hello = 123)
{
var_dump($hello);
}
my_function(null); // > null
my_function(undefined); // > 123