-
Notifications
You must be signed in to change notification settings - Fork 0
Obtener Moneda Vigente
Agustin Fernandez edited this page Mar 6, 2021
·
2 revisions
Mediante esta funcion, podremos obtener las monedas vigentes que Mercado Pago permite.
Usando la siguiente clase
$MP->Currencies();
Obtendremos el siguiente resultado
Array
(
[0] => Array
(
[id] => ARS
[symbol] => $
[description] => Peso argentino
[decimal_places] => 2
)
[1] => Array
(
[id] => BOB
[symbol] => Bs
[description] => Boliviano
[decimal_places] => 2
)
[2] => Array
(
[id] => BRL
[symbol] => R$
[description] => Real
[decimal_places] => 2
)
)