require 'vendor/autoload.php'; use Alexsabdev\Odds\DecimalOdd; ... $odd = new DecimalOdd(3.5); Show the value /** * Prints '3.5' */ $decimal = $odd->value(); print_r($decimal); Convert to other odds /** * Prints '5/2' */ $fractional = $odd->toFractional()->value(...