Function Tempcode->parse_from
Definitions
sources/tempcode.php
- Parse a single symbol from an input stream and append it.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| &$code | string | Yes | No | required parameter | N/A | N/A | Code string (input stream) |
| &$pos | integer | Yes | No | required parameter | N/A | N/A | Start position of input string |
| &$len | integer | Yes | No | required parameter | N/A | N/A | End position of input string |
Preview
Code (PHP)
/**
* Parse a single symbol from an input stream and append it.
*
* @param string $code Code string (input stream)
* @param integer $pos Start position of input string
* @param integer $len End position of input string
*/
public function parse_from(string &$code, int &$pos, int &$len)
* Parse a single symbol from an input stream and append it.
*
* @param string $code Code string (input stream)
* @param integer $pos Start position of input string
* @param integer $len End position of input string
*/
public function parse_from(string &$code, int &$pos, int &$len)

