TwistPHP Documentation

currencyConversionRate

File path: dist/twist/Core/Utilities/Localisation.utility.php
Namespace: Twist\Core\Utilities
Extends: Base

currencyConversionRateGet the conversion rate between two provided currency ISO codes.

Parameters

Name Type Description
$strFromISOstringn/a
$strToISOstringn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strFromISO 'foo';
$strToISO 'foo';

//Call the function currencyConversionRate with the example vars
Twist::Localisation() -> currencyConversionRate($strFromISO$strToISO);