fork(1) download
  1. <?php
  2.  
  3. $weight = 0.05;
  4.  
  5. $handling = false;
  6.  
  7. if($weight > .001 && $weight < 5)
  8. {
  9. $handling=7.10;
  10. }
  11.  
  12. var_dump($handling);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
float(7.1)