fork download
  1. <?php
  2. function convertToInt ($string) {
  3. return $string * 1;
  4. }
  5. echo(convertToInt("-45"));
  6. ?>
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
-45