본문 바로가기
php

php textarea글을 가져와서 출력하는 방법 feat nl2br

by 하이바네 2022. 7. 20.
반응형

textarea로 작성된 글을 db에서 가져와서 출력을 할 경우 php에서는 nl2br을 사용하면 쉽게 가능하다.

 

\n문자를 <br>로 치환해주는 역할을 한다고 보면 된다.

 

php에서 내장된 기능으로 제공을 하므로 괜히 만들어 쓰지말자(...)

 

https://www.php.net/manual/en/function.nl2br.php

 

PHP: nl2br - Manual

This is example with "\R" regex token which matches any unicode newline character."u" flag treate strings as UTF-16. Which is optional, depending on your use case. ', $string);}?>NOTE:preg_replace versions are much slower than using str_replace version or

www.php.net

 

해당 함수에 대한 자세한 설명은 위의 링크에 들어가면 나오며 코드에 적용하면 다음과 같이 쓸 수 있다.

 

 

 

 

728x90

댓글