Writes a string to the output stream.

Parameters

  • string $output The string to write.
  • integer|string|array $options integer as the number of new lines. string as the style array as : - nl : number of new lines to add at the end - style : the style name to wrap around the

Returns

integer

Source

						public function out($output = null, $options = array('nl' => 1)) {
		return $this->_response('output', $output, $options);
	}