Function __global->check_css
Definitions
sources/webstandards2.php
- Checks a CSS style sheet (high level).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: array
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $data | string | No | No | required parameter | N/A | N/A | The data of the style sheet |
Returns
- Parse information
- Type: array
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Checks a CSS style sheet (high level).
*
* @param string $data The data of the style sheet
* @return array Parse information
*/
function check_css(string $data) : array
* Checks a CSS style sheet (high level).
*
* @param string $data The data of the style sheet
* @return array Parse information
*/
function check_css(string $data) : array

