webERP 3.10 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News webERP 3.10 (Default branch)
# 1  
Old 02-07-2009
webERP 3.10 (Default branch)

webERP is a Web-based integrated accounting system. It offers multi-currency sales orders and accounts receivable, multi-currency purchase orders and accounts payable, multiple inventory locations, unlimited number of price lists, pricing by customer and currency, integrated general ledger journals created for all transactions in accounts receivable and payable, standard costing, user definable sales analysis reports, and standard cost stock valuation and stock planning reports. It also features serialised inventory and lot tracking that is all multi-language capable.License: GNU General Public License (GPL)Changes:
Many new features and bugfixes from the last release including geo mapping, new CRM functionality, significant improvements to the API, two new themes, and the inclusion of Javascript to check the input on certain forms.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
NUMFMT_PARSE_CURRENCY(3)						 1						  NUMFMT_PARSE_CURRENCY(3)

NumberFormatter::parseCurrency - Parse a currency number

	Object oriented style

SYNOPSIS
public float NumberFormatter::parseCurrency (string $value, string &$currency, [int &$position]) DESCRIPTION
Procedural style float numfmt_parse_currency (NumberFormatter $fmt, string $value, string &$currency, [int &$position]) Parse a string into a double and a currency using the current formatter. PARAMETERS
o $fmt -NumberFormatter object. o $currency - Parameter to receive the currency name (3-letter ISO 4217 currency code). o $position - Offset in the string at which to begin parsing. On return, this value will hold the offset at which parsing ended. RETURN VALUES
The parsed numeric value or FALSE on error. EXAMPLES
Example #1 numfmt_parse_currency(3) example <?php $fmt = numfmt_create( 'de_DE', NumberFormatter::CURRENCY ); $num = "1.234.567,89xc2xa0$"; echo "We have ".numfmt_parse_currency($fmt, $num, $curr)." in $curr "; ?> Example #2 OO example <?php $fmt = new NumberFormatter( 'de_DE', NumberFormatter::CURRENCY ); $num = "1.234.567,89xc2xa0$"; echo "We have ".$fmt->parseCurrency($num, $curr)." in $curr "; ?> The above example will output: We have 1234567.89 in USD SEE ALSO
numfmt_get_error_code(3), numfmt_parse(3), numfmt_format_currency(3). PHP Documentation Group NUMFMT_PARSE_CURRENCY(3)