Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 524 Bytes

0506.md

File metadata and controls

21 lines (18 loc) · 524 Bytes

What is the result of the following code?

function foo(string $a, ?string $b) : ?int {
    return $b ? $a <=> $b : null;
}
echo foo('PHP', 7);
  • A) 1
  • B) A type error because function should return int but instade return string;
  • C) 0
  • D) A syntax error because ?string and ?int does not exist in PHP7
Answer

Answer: A