Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Rmunate\Utilities\Langs; class Langs { /** * List of time zones..
Decoded Output download
<?php
namespace Rmunate\Utilities\Langs;
class Langs
{
/**
* List of time zones available in the package.
*
* @var array
*/
public const LOCALES_AVAILABLE = [
'de' => 'German', // German from Germany.
'en' => 'English', // English from the United States.
'es' => 'Spanish', // Spanish from Spain.
'fa' => 'Farsi', // Farsi from Iran.
'fr' => 'French', // French from France.
'hi' => 'Hindi', // Hindi from India.
'it' => 'Italian', // Italian from Italy.
'pl' => 'Polish', // Polish from Poland.
'pt' => 'Portuguese', // Portuguese from Portugal.
'ro' => 'Romanian', // Romanian from Romania.
'vi' => 'Vietnamese', // Vietnamese from Vietnam.
'tr' => 'Trke', // Turkish from Turkey.
];
/**
* Array containing connectors for each language.
*
* @var array
*/
public const LOCALES_CONNECTORS = [
'de' => 'und', // German from Germany: "und"
'en' => 'and', // English from the United States: "and"
'es' => 'con', // Spanish from Spain: "con"
'fa' => '', // Farsi from Iran: ""
'fr' => 'et', // French from France: "et"
'hi' => '', // Hindi from India: ""
'it' => 'con', // Italian from Italy: "con"
'pl' => 'i', // Polish from Poland: "i"
'pt' => 'com', // Portuguese from Portugal: "com"
'ro' => 'cu', // Romanian from Romania: "cu"
'vi' => 'v', // Vietnamese from Vietnam: "v"
];
/**
* Array containing connectors for each language used when representing money.
*
* @var array
*/
public const LOCALES_CONNECTORS_MONEY = [
'es' => 'de', // Spanish from Spain: "de"
'fa' => '', // Farsi from Iran: ""
'fr' => 'de', // French from France: "de"
'hi' => '', // Hindi from India: ""
'it' => 'di', // Italian from Italy: "di"
'pl' => 'i', // Polish from Poland: "i"
'pt' => 'de', // Portuguese from Portugal: "de"
'ro' => 'de', // Romanian from Romania: "de"
'vi' => 'ca', // Vietnamese from Vietnam: "ca"
];
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Rmunate\Utilities\Langs;
class Langs
{
/**
* List of time zones available in the package.
*
* @var array
*/
public const LOCALES_AVAILABLE = [
'de' => 'German', // German from Germany.
'en' => 'English', // English from the United States.
'es' => 'Spanish', // Spanish from Spain.
'fa' => 'Farsi', // Farsi from Iran.
'fr' => 'French', // French from France.
'hi' => 'Hindi', // Hindi from India.
'it' => 'Italian', // Italian from Italy.
'pl' => 'Polish', // Polish from Poland.
'pt' => 'Portuguese', // Portuguese from Portugal.
'ro' => 'Romanian', // Romanian from Romania.
'vi' => 'Vietnamese', // Vietnamese from Vietnam.
'tr' => 'Trke', // Turkish from Turkey.
];
/**
* Array containing connectors for each language.
*
* @var array
*/
public const LOCALES_CONNECTORS = [
'de' => 'und', // German from Germany: "und"
'en' => 'and', // English from the United States: "and"
'es' => 'con', // Spanish from Spain: "con"
'fa' => '', // Farsi from Iran: ""
'fr' => 'et', // French from France: "et"
'hi' => '', // Hindi from India: ""
'it' => 'con', // Italian from Italy: "con"
'pl' => 'i', // Polish from Poland: "i"
'pt' => 'com', // Portuguese from Portugal: "com"
'ro' => 'cu', // Romanian from Romania: "cu"
'vi' => 'v', // Vietnamese from Vietnam: "v"
];
/**
* Array containing connectors for each language used when representing money.
*
* @var array
*/
public const LOCALES_CONNECTORS_MONEY = [
'es' => 'de', // Spanish from Spain: "de"
'fa' => '', // Farsi from Iran: ""
'fr' => 'de', // French from France: "de"
'hi' => '', // Hindi from India: ""
'it' => 'di', // Italian from Italy: "di"
'pl' => 'i', // Polish from Poland: "i"
'pt' => 'de', // Portuguese from Portugal: "de"
'ro' => 'de', // Romanian from Romania: "de"
'vi' => 'ca', // Vietnamese from Vietnam: "ca"
];
}
Function Calls
None |
Stats
MD5 | 810750861fe24d7e6801859b4e22745a |
Eval Count | 0 |
Decode Time | 173 ms |