fork(1) download
  1. <?php
  2.  
  3. echo gettype(0x55)."\n"; //type is integer
  4. echo 0x55."\n"; //this is correct
  5. echo (int)"0x55"."\n"; //why 0?
  6. echo intval("0x55", 0); //why 0?
Success #stdin #stdout 0.03s 26044KB
stdin
Standard input is empty
stdout
integer
85
0
85