fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $x = '';
  6. $y = $x ?? null;
  7. $z = $x ?: null;
  8.  
  9. var_dump($y, $z);
Success #stdin #stdout 0.04s 25596KB
stdin
Standard input is empty
stdout
string(0) ""
NULL