53063593e3
Final
17 lines
231 B
PHP
17 lines
231 B
PHP
<?php
|
|
Translate::lookup();
|
|
|
|
class Translate
|
|
{
|
|
const ENGLISH = 0;
|
|
const SPANISH = 1;
|
|
const FRENCH = 2;
|
|
const GERMAN = 3;
|
|
// ...
|
|
|
|
static function lookup()
|
|
{
|
|
echo self::SPANISH;
|
|
}
|
|
}
|
|
?>
|