mirror of
https://github.com/php/doc-es.git
synced 2026-03-27 08:52:15 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@336081 c90b9560-bf6c-de11-be94-00142212c4b1
162 lines
3.9 KiB
XML
162 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: b18da506de27319134dd0bf50db081797a20bd58 Maintainer: jpberdejo Status: ready -->
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.stripslashes">
|
|
<refnamediv>
|
|
<refname>stripslashes</refname>
|
|
<refpurpose>Quita las barras de un string con comillas escapadas</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>string</type><methodname>stripslashes</methodname>
|
|
<methodparam><type>string</type><parameter>str</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Quita las barras de un string con comillas escapadas.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
Si <link linkend="ini.magic-quotes-sybase">magic_quotes_sybase</link> está
|
|
activo, ninguna barra invertida será retirada pero dos apóstrofes serán reemplazados
|
|
por uno.
|
|
</para>
|
|
</note>
|
|
<para>
|
|
Un ejemplo de uso de <function>stripslashes</function> es cuando la directiva
|
|
de PHP <link linkend="ini.magic-quotes-gpc">magic_quotes_gpc</link>
|
|
es <literal>on</literal> (estaba activado por defecto antes de PHP 5.4) y no se están insertando
|
|
estos datos en un lugar (como una base de datos) que requiera escapado.
|
|
Por ejemplo, si simplemente se le da salida a los datos directamente desde un formulario HTML.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>str</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
El string de entrada.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Devuelve un string con las barras invertidas retiradas.
|
|
(<literal>\'</literal> se convierte en <literal>'</literal> y así sucesivamente.)
|
|
Barras invertidas dobles (<literal>\\</literal>) se convierten en una
|
|
sencilla (<literal>\</literal>).
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Un ejemplo de <function>stripslashes</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$str = "Is your name O\'reilly?";
|
|
|
|
// Salida: Is your name O'reilly?
|
|
echo stripslashes($str);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<note>
|
|
<para>
|
|
<function>stripslashes</function> no es recursiva. Si se desea aplicar
|
|
esta función a un array multi-dimensional, se necesita utilizar una función
|
|
recursiva.
|
|
</para>
|
|
</note>
|
|
<para>
|
|
<example>
|
|
<title>Utilizando <function>stripslashes</function> en un array</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
function stripslashes_deep($value)
|
|
{
|
|
$value = is_array($value) ?
|
|
array_map('stripslashes_deep', $value) :
|
|
stripslashes($value);
|
|
|
|
return $value;
|
|
}
|
|
|
|
// Ejemplo
|
|
$array = array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar"));
|
|
$array = stripslashes_deep($array);
|
|
|
|
// Salida
|
|
print_r($array);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[0] => f'oo
|
|
[1] => b'ar
|
|
[2] => Array
|
|
(
|
|
[0] => fo'o
|
|
[1] => b'ar
|
|
)
|
|
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>addslashes</function></member>
|
|
<member><function>get_magic_quotes_gpc</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
|
|
-->
|
|
|