Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert error #1

Open
alissonlinneker opened this issue May 16, 2020 · 1 comment
Open

Convert error #1

alissonlinneker opened this issue May 16, 2020 · 1 comment

Comments

@alissonlinneker
Copy link

$converter = new \Sharapov\OddsConverter\OddsConverter;
$converter->setOdd(2.88);

print_r($converter->getFractional());

//Return: 47/25
Why?

2.88 = 15/8

@qvarting
Copy link

qvarting commented Mar 25, 2022

$converter = new \Sharapov\OddsConverter\OddsConverter();
$converter->setOdd( 1 );
print $converter->getFractional() . "<br>";
print $converter->getDecimal() . "<br>";
print $converter->getMoneyline() . "<br>";

Return

1/100
1.01
-10000

Correct is?

0/1
1
-

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants