mirror of
https://github.com/php/doc-en.git
synced 2026-03-23 23:32:18 +01:00
Review is welcome git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@341282 c90b9560-bf6c-de11-be94-00142212c4b1
69 lines
2.0 KiB
XML
69 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<sect1 xml:id="language.types.resource">
|
|
<title>Resources</title>
|
|
|
|
<para>
|
|
A <type>resource</type> is a special variable, holding a reference to an
|
|
external resource. Resources are created and used by special functions. See
|
|
the <link linkend="resource">appendix</link> for a listing of all these
|
|
functions and the corresponding <type>resource</type> types.
|
|
</para>
|
|
|
|
<para>
|
|
See also the <function>get_resource_type</function> function.
|
|
</para>
|
|
|
|
<sect2 xml:id="language.types.resource.casting">
|
|
<title>Converting to resource</title>
|
|
|
|
<para>
|
|
As <type>resource</type> variables hold special handles to opened files,
|
|
database connections, image canvas areas and the like, converting to a
|
|
<type>resource</type> makes no sense.
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 xml:id="language.types.resource.self-destruct">
|
|
<title>Freeing resources</title>
|
|
|
|
<para>
|
|
Thanks to the reference-counting system being part of Zend Engine,
|
|
a <type>resource</type> with no more references to it is detected
|
|
automatically, and it is freed by the garbage collector. For this reason, it
|
|
is rarely necessary to free the memory manually.
|
|
</para>
|
|
|
|
<note>
|
|
<simpara>
|
|
Persistent database links are an exception to this rule. They are
|
|
<emphasis>not</emphasis> destroyed by the garbage collector. See the
|
|
<link linkend="features.persistent-connections">persistent
|
|
connections</link> section for more information.
|
|
</simpara>
|
|
</note>
|
|
|
|
</sect2>
|
|
</sect1>
|
|
|
|
<!-- 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
|
|
-->
|