En este artículo, discutiremos cómo insertar un salto de línea en una string PHP. Lo obtendremos usando la función nl2br() . Esta función se usa para dar un nuevo salto de línea dondequiera que se coloque ‘\n’.
Sintaxis:
nl2br("string \n");
donde, string es la string de entrada.
Ejemplo 1: programa PHP para insertar un salto de línea en una string.
PHP
<?php // Insert a new line break echo nl2br("This is first line \n This is second line"); ?>
Producción
This is first line <br /> This is second line
Ejemplo 2:
PHP
<?php // Insert a line break with new line echo nl2br("This is first line \n This is second " + "line \n This is third line \n This is forth line"); ?>
Producción
This is first line <br /> This is second line <br /> This is third line <br /> This is forth line
Publicación traducida automáticamente
Artículo escrito por gottumukkalabobby y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA