Function __global->parse_themewizard_css_colour_expression
Definitions
sources/themewizard.php
- Convert a textual CSS colour expression into an expression tree.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: array
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $textual | string | No | No | required parameter | N/A | N/A | Textual expression |
Returns
- Expression tree (null: not real)
- Type: ?array
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Convert a textual CSS colour expression into an expression tree.
*
* @param string $textual Textual expression
* @return ?array Expression tree (null: not real)
*/
function parse_themewizard_css_colour_expression(string $textual) : ?array
* Convert a textual CSS colour expression into an expression tree.
*
* @param string $textual Textual expression
* @return ?array Expression tree (null: not real)
*/
function parse_themewizard_css_colour_expression(string $textual) : ?array

