1
0
mirror of https://github.com/php/doc-es.git synced 2026-03-27 00:42:10 +01:00
Files
archived-doc-es/reference/strings/functions/nl2br.xml
Pedro Antonio Gil Rodríguez 05b24da5cc Actualización a la última versión
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@336452 c90b9560-bf6c-de11-be94-00142212c4b1
2015-04-08 08:28:08 +00:00

175 lines
4.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: ad8e0151314c98ae54244ce625ed41cf14798bed Maintainer: jpberdejo Status: ready -->
<!-- Reviewed: yes Maintainer: seros -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.nl2br">
<refnamediv>
<refname>nl2br</refname>
<refpurpose>Inserta saltos de línea HTML antes de todas las nuevas líneas de un string</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>string</type><methodname>nl2br</methodname>
<methodparam><type>string</type><parameter>string</parameter></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>is_xhtml</parameter><initializer>true</initializer></methodparam>
</methodsynopsis>
<para>
Devuelve el parámetro <parameter>string</parameter> con un '&lt;br /&gt;' o
'&lt;br&gt;' insertado antes de cada nueva línea. (<literal>\r\n</literal>,
<literal>\n\r</literal>, <literal>\n</literal> y <literal>\r</literal>).
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>string</parameter></term>
<listitem>
<para>
El string de entrada.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>is_xhtml</parameter></term>
<listitem>
<para>
Si utilizar saltos de línea compatibles con XHTML o no.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Devuelve el string alterado.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Usar <function>nl2br</function></title>
<programlisting role="php">
<![CDATA[
<?php
echo nl2br("foo no es\n bar");
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
foo no es<br />
bar
]]>
</screen>
</example>
<example>
<title>Generar marcado HTML válido utilizando el parámetro <parameter>is_xhtml</parameter></title>
<programlisting role="php">
<![CDATA[
<?php
echo nl2br("Bienvenido\r\nEste es mi documento HTML", false);
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
Bienvenido<br>
Este es mi documento HTML
]]>
</screen>
</example>
<example>
<title>Varios separadores de nueva línea</title>
<programlisting role="php">
<![CDATA[
<?php
$cadena = "Esto\r\nes\n\runa\ncadena\r";
echo nl2br($cadena);
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
Esto<br />
es<br />
una<br />
cadena<br />
]]>
</screen>
</example>
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>5.3.0</entry>
<entry>
Se agregó el parámetro opcional <parameter>is_xhtml</parameter>. Antes
de esta versión, siempre se insertaba '&lt;br /&gt;'.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>htmlspecialchars</function></member>
<member><function>htmlentities</function></member>
<member><function>wordwrap</function></member>
<member><function>str_replace</function></member>
</simplelist>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->