Guest User

Untitled

a guest
Aug 15th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. class FiatConverter
  2. {
  3. function __construct()
  4. {
  5. $this->baseFiat = 'USD';
  6. }
  7. function float($value){
  8. return sprintf('%.8f', $value);
  9. }
  10. }
  11.  
  12. class Index
  13. {
  14. function __construct()
  15. {
  16. $this->f= $this->float(1.33366515165);
  17. }
  18. }
Add Comment
Please, Sign In to add comment