Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17642 программиста и 1372 робота. Сейчас ищут 1464 программиста ...
Translation2::get
Вернуться к: Translation2
Translation2::get
Translation2::get() – Get translated string
Synopsis
require_once 'Translation2.php';
string Translation2::get ( string $stringID , string $pageID = TRANSLATION2_DEFAULT_PAGEID , string $langID = null , string $defaultText = '' )
Fetch the string from the container. If the string is empty and the DefaultText decorator is used, then return the $defaultText.
Parameter
- string $stringID
-
- string $pageID
-
- string $langID
-
- string $defaultText
-
Text to display when the string is empty. NB: This parameter is only used in the DefaultText decorator
Note
This function can not be called statically.
Вернуться к: Translation2