function app_url_is($url) { return app_running_is('www_server', $url); }
function fk_money_format($amount) { if (app_running_is('server_os', 'linux')) { //For linux setlocale(LC_MONETARY, 'es_MX'); $mon_val = money_format('%(#10n', $amount); } else { // Only for windows setlocale(LC_ALL, ''); // Locale will be different on each system. $locale = localeconv(); $mon_val = $locale['currency_symbol'] . number_format($amount, 2, $locale['decimal_point'], $locale['thousands_sep']); } return $mon_val; }