mirror of
https://github.com/php/doc-es.git
synced 2026-04-23 07:08:17 +02:00
5cb6ad2038
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@328498 c90b9560-bf6c-de11-be94-00142212c4b1
83 lines
2.1 KiB
XML
83 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 5273dab5d8bc48e37d8a148cfbdde0ab991790b7 Maintainer: aeoris Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
|
|
<refentry xml:id="serializable.serialize" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>Serializable::serialize</refname>
|
|
<refpurpose>Representación en formato cadena de un objeto</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<modifier>abstract</modifier> <modifier>public</modifier> <type>string</type><methodname>Serializable::serialize</methodname>
|
|
<void />
|
|
</methodsynopsis>
|
|
<para>
|
|
Devuelve la representación de un objeto en formato string.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
Este método actúa como el
|
|
<link linkend="language.oop5.decon.destructor">destructor</link> del objeto. El método
|
|
<link linkend="object.destruct">__destruct()</link> <emphasis>no</emphasis> será llamado después de usar este
|
|
método.
|
|
</para>
|
|
</note>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
&no.function.parameters;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Devuelve la representación de un objeto o &null;
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="errors">
|
|
&reftitle.errors;
|
|
<para>
|
|
Lanza una <classname>Exception</classname> cuando de devuelen otros tipos aparte de string y
|
|
&null;
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><link linkend="object.sleep">__sleep()</link></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
|
|
-->
|