Zend_Currency-Introduction.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.currency.introduction">
  4. <title>Introduction to Zend_Currency</title>
  5. <para>
  6. <classname>Zend_Currency</classname> is part of the strong support for I18n in Zend
  7. Framework. It handles all issues related to currency, money representation, formatting,
  8. exchange services and calculation.
  9. </para>
  10. <sect2 id="zend.currency.introduction.list">
  11. <title>Why should you use Zend_Currency?</title>
  12. <para>
  13. <classname>Zend_Currency</classname> offers you the following benefit:
  14. </para>
  15. <itemizedlist mark='opencircle'>
  16. <listitem>
  17. <para>
  18. <emphasis>Complete Locale support</emphasis>
  19. </para>
  20. <para>
  21. This component works with all available locales and therefore knows about more
  22. than 100 different localized currencies. This includes informations like
  23. currency names, abbreviations, money signs and much more.
  24. </para>
  25. </listitem>
  26. <listitem>
  27. <para>
  28. <emphasis>Reusable Currency Definitions</emphasis>
  29. </para>
  30. <para>
  31. <classname>Zend_Currency</classname> has the advantage that already defined
  32. currency representations can be reused. You could also have 2 different
  33. representations for the same currency.
  34. </para>
  35. </listitem>
  36. <listitem>
  37. <para>
  38. <emphasis>Currency calculation</emphasis>
  39. </para>
  40. <para>
  41. <classname>Zend_Currency</classname> allows you also to calculate with currency
  42. values. Therefor it provides you a interface to exchange services.
  43. </para>
  44. </listitem>
  45. <listitem>
  46. <para>
  47. <emphasis>Additional Methods</emphasis>
  48. </para>
  49. <para>
  50. <classname>Zend_Currency</classname> includes several additional methods that
  51. offer informations about details to currencies like: which currency is used
  52. within a defined region, or what are the known abbreviations of a currency.
  53. </para>
  54. </listitem>
  55. </itemizedlist>
  56. </sect2>
  57. </sect1>