fork download
  1. <?php
  2.  
  3. $count = '0';
  4. $out = (int) ($count ?? 22);
  5.  
  6. var_dump($out);
Success #stdin #stdout 0.02s 25636KB
stdin
Standard input is empty
stdout
int(0)