Live long and Phospr

Just a fraction of the effort

                
<?php

use Phospr\Fraction;

$fraction = new Fraction(4, 5);

echo $fraction; // 4/5


                
            

Would you like to know more?

github.com/phospr/fraction

Weight, weight...don't tell me!

                
<?php

use Phospr\Weight;
use Phospr\Uom;

$lbs = Weight::LB(1, 2);
$ozs = $lbs->to(Uom::OZ());

echo $ozs; // 8 OZ
                
            

Would you like to know more?

github.com/phospr/quantity