Function __global->static_evaluate_tempcode
Definitions
sources/tempcode.php
- Simple function to evaluate some Tempcode. Very rarely to be used, only if you can't call a method (e.g. you are copying direct into an array, such as in block caching).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $ob | Tempcode | No | No | required parameter | N/A | N/A | Tempcode object |
Returns
- Evaluated string
- Type: string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Simple function to evaluate some Tempcode. Very rarely to be used, only if you can't call a method (e.g. you are copying direct into an array, such as in block caching).
*
* @param Tempcode $ob Tempcode object
* @return string Evaluated string
*/
function static_evaluate_tempcode(object $ob) : string
* Simple function to evaluate some Tempcode. Very rarely to be used, only if you can't call a method (e.g. you are copying direct into an array, such as in block caching).
*
* @param Tempcode $ob Tempcode object
* @return string Evaluated string
*/
function static_evaluate_tempcode(object $ob) : string

