Skip to content

Nullable cast (?int) #55

@thekid

Description

@thekid
$number = 123; 
(int) $number => 123; 
(?int) $number => 123;

$string = '123'; 
(int) $string => 123; 
(?int) $string => 123;

$null = null; 
(int) $null => 0 
(?int) $null => null

See https://externals.io/message/102997

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions