Method | Description | |
---|---|---|
format ( array $errors, string $format = '#%1$d: %2$s (near "%4$s" at position %5$d)' ) : array | Formats the specified errors | |
get ( array $objs ) : array | Gets the errors of a lexer and a parser. |
public static format ( array $errors, string $format = '#%1$d: %2$s (near "%4$s" at position %5$d)' ) : array | ||
$errors | array | The errors to be formatted. |
$format | string | The format of an error. '$1$d' is replaced by the position of this error. '$2$s' is replaced by the error message. '$3$d' is replaced by the error code. '$4$s' is replaced by the string that caused the issue. '$5$d' is replaced by the position of the string. |
return | array |
public static get ( array $objs ) : array | ||
$objs | array | Objects from where the errors will be extracted. |
return | array | Each element of the array represents an error. `$err[0]` holds the error message. `$err[1]` holds the error code. `$err[2]` holds the string that caused the issue. `$err[3]` holds the position of the string. (i.e. `array($msg, $code, $str, $pos)`) |