Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16926 программистов и 1771 робот. Сейчас ищут 1820 программистов ...
get()
Вернуться к: HTML_Template_Sigma
get()
get() – Returns a block with all replacements done.
Synopsis
require_once 'HTML/Template/Sigma.php';
string HTML_Template_Sigma::get ( string $block = '__global__' , bool $clear = false )
Returns a parsed block: block with all replacements done.
This method will automatically call parse(), only if called with $block='__global__' when '__global__' was not parse()'d before. In all other cases you should call parse() before calling get()
Parameter
- string $block
-
block name
- boolean $clear
-
whether to clear parsed block contents
Return value
return block with all replacements done
See
Throws
Error code | Error message | Reason | Solution |
---|---|---|---|
SIGMA_BLOCK_NOT_FOUND | Cannot find block '$block' | There is no block $block in the template | Check the block name spelling, check whether you added all the necessary blocks to the template |
Note
This function can not be called statically.
Вернуться к: HTML_Template_Sigma