Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
package
money
Commits
2eed0732
Commit
2eed0732
authored
Dec 03, 2011
by
Mathias Verraes
Browse files
readme
parent
aeef8616
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
2eed0732
...
...
@@ -3,5 +3,17 @@ Money
PHP 5.3+ library to make working with money safer, easier, and fun!
In short: You cannot and should not represent monetary values by a float. Wherever
you need to represent money, use this Money value object.
<?php
$fiveEur = Money::EUR(500);
$tenEur = $fiveEur->add($fiveEur);
list($part1, $part2, $part3) = $tenEur->allocate(array(1, 1, 1));
assert($part1->equals(Money::EUR(334)));
assert($part2->equals(Money::EUR(333)));
assert($part3->equals(Money::EUR(333)));
The documentation is available at http://money.readthedocs.org
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment