“Newline не работает PHP” Ответ

PHP Newline

"\r\n"
Unusual Unicorn

nl2br () php

// add to the functions file
function translateLineBreaks($string) {
	$result = nl2br ($string);
  	return $result;
}
Cheerful Cockroach

Newline не работает PHP

// When you run a PHP script in a browser, it will be rendered as HTML by default.
// Use <br /> instead or modify the header to content type plain text
echo "Hello <br /> World";
Shy Semicolon

Ответы похожие на “Newline не работает PHP”

Вопросы похожие на “Newline не работает PHP”

Больше похожих ответов на “Newline не работает PHP” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования