Skip to content

Latest commit

History

History
38 lines (30 loc) 路 477 Bytes

File metadata and controls

38 lines (30 loc) 路 477 Bytes

What would go in place of ?????? below to make this script execute without a fatal error?

$a = 1;
$b = 0;    
/* ?????? */    
$c = $a / $b;
  • A)
die();
  • B)
__halt_compiler();
  • C)
exit();
  • D)
quit();
Answer

Answer: A, B, C