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
799057a9
Commit
799057a9
authored
Aug 02, 2012
by
Marijn Huizendveld
Browse files
Improve example in README.
Import the `Money\Money` namespace and add syntax highlighting for Github.
parent
de55e39b
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
799057a9
...
...
@@ -6,14 +6,19 @@ PHP 5.3+ library to make working with money safer, easier, and fun!
In short: You probably shouldn't 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)));
```
php
<?php
use
Money\Money
;
$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