The issue: PHP5 has cool OO features
<?php
    
class Integer {
        protected 
$value 0;
        function 
__construct($int) {
            
$this->value $int;
        }
    }
?>
Nice OO, but much too much overhead in PHP
The solution: Knowing where the limits are