Skip to main content

Zymba Documentation

Output

Text
object @Output() {
clear() {}
echo(...$strings) {}
flush() {}
getContent(): string {}
getLevel(): int {}
getSize(): int {}
}

Static standard output related prototypes and functions.

Functions

Clears the output buffer.

CODE
@Output.clear(): void

Outputs strings.

CODE
@Output.echo(variadic $strings): void
Parameters
NameTypeValueDefault
stringsvariadic...

Flushes the output buffer.

CODE
@Output.flush(): void

Gets the content of the current output buffer.

CODE
@Output.getContent(): string
Returns
TypeValue
string

Gets the nesting level of output buffering.

CODE
@Output.getLevel(): int
Returns
TypeValue
int

Gets the size of the current output buffer in number of bytes.

CODE
@Output.getSize(): int
Returns
TypeValue
int