Add newlines ("\n") to the output stream.

Parameters

  • integer $number The number of new lines to print.

Returns

integer

Source

						public function nl($number = 1) {
		return str_repeat("\n", $number);
	}