Skip to main content

Zymba Documentation

Output

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

Static standard output related prototypes and functions.

Functions

Clears the output buffer.

@Output.clear(): void

Outputs strings.

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

Flushes the output buffer.

@Output.flush(): void

Gets the content of the current output buffer.

@Output.getContent(): string
Returns
TypeValue
string

Gets the nesting level of output buffering.

@Output.getLevel(): int
Returns
TypeValue
int

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

@Output.getSize(): int
Returns
TypeValue
int