Function Tempcode->is_empty_shell
Definitions
sources/tempcode.php
- Find whether the Tempcode object entirely empty (devoid of anything evaluable), not just evaluates as empty. This is also useful if you want to avoid early evaluation, which will mess up GET/SET flow.Does not perform an evaluation, so will not trigger any early pre-processing or out-of-order evaluation.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Returns
- Whether it is entirely empty
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find whether the Tempcode object entirely empty (devoid of anything evaluable), not just evaluates as empty. This is also useful if you want to avoid early evaluation, which will mess up GET/SET flow.Does not perform an evaluation, so will not trigger any early pre-processing or out-of-order evaluation.
*
* @return boolean Whether it is entirely empty
*/
public function is_empty_shell() : bool
* Find whether the Tempcode object entirely empty (devoid of anything evaluable), not just evaluates as empty. This is also useful if you want to avoid early evaluation, which will mess up GET/SET flow.Does not perform an evaluation, so will not trigger any early pre-processing or out-of-order evaluation.
*
* @return boolean Whether it is entirely empty
*/
public function is_empty_shell() : bool

