Function CMS_RSS->startElement
Definitions
sources/rss.php
- Standard PHP XML parser function.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $parser | mixed | No | No | required parameter | N/A | N/A | The parser |
| $name | string | No | No | required parameter | N/A | N/A | The name of the element found |
| $attributes | array | No | No | required parameter | N/A | N/A | Array of attributes of the element |
Preview
Code (PHP)
/**
* Standard PHP XML parser function.
*
* @param mixed $parser The parser
* @param string $name The name of the element found
* @param array $attributes Array of attributes of the element
*/
public function startElement($parser, string $name, array $attributes)
* Standard PHP XML parser function.
*
* @param mixed $parser The parser
* @param string $name The name of the element found
* @param array $attributes Array of attributes of the element
*/
public function startElement($parser, string $name, array $attributes)

