mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Documentation for SplObjectStorage::removeAllExcept (Patch by Matthew Turland)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@307130 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
160fcae507
commit
f8c6655fc7
2 changed files with 103 additions and 0 deletions
102
reference/spl/splobjectstorage/removeallexcept.xml
Normal file
102
reference/spl/splobjectstorage/removeallexcept.xml
Normal file
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 288721 $ -->
|
||||
|
||||
<refentry xml:id="splobjectstorage.removeallexcept" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>SplObjectStorage::removeAllExcept</refname>
|
||||
<refpurpose>Removes all objects except for those contained in another storage from the current storage</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<modifier>public</modifier> <type>void</type><methodname>SplObjectStorage::removeAllExcept</methodname>
|
||||
<methodparam><type>SplObjectStorage</type><parameter>storage</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Removes all objects except for those contained in another storage from the current storage.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>storage</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The storage containing the elements to retain in the current storage.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
&return.void;
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="examples">
|
||||
&reftitle.examples;
|
||||
<para>
|
||||
<example>
|
||||
<title><function>SplObjectStorage::removeAllExcept</function> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
$a = (object) 'a';
|
||||
$b = (object) 'b';
|
||||
$c = (object) 'c';
|
||||
|
||||
$foo = new SplObjectStorage;
|
||||
$foo->attach($a);
|
||||
$foo->attach($b);
|
||||
|
||||
$bar = new SplObjectStorage;
|
||||
$bar->attach($b);
|
||||
$bar->attach($c);
|
||||
|
||||
$foo->removeAllExcept($bar);
|
||||
var_dump($foo->contains($a));
|
||||
var_dump($foo->contains($b));
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
&example.outputs.similar;
|
||||
<screen>
|
||||
<![CDATA[
|
||||
bool(false)
|
||||
bool(true)
|
||||
]]>
|
||||
</screen>
|
||||
</example>
|
||||
</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
|
||||
-->
|
||||
|
|
@ -944,6 +944,7 @@
|
|||
<function name='splobjectstorage::offsetset' from='PHP 5 >= 5.3.0'/>
|
||||
<function name='splobjectstorage::offsetunset' from='PHP 5 >= 5.3.0'/>
|
||||
<function name='splobjectstorage::removeall' from='PHP 5 >= 5.3.0'/>
|
||||
<function name='splobjectstorage::removeallexcept' from='PHP 5 >= 5.3.5'/>
|
||||
<function name='splobjectstorage::rewind' from='PHP 5 >= 5.1.0'/>
|
||||
<function name='splobjectstorage::serialize' from='PHP 5 >= 5.2.2'/>
|
||||
<function name='splobjectstorage::setinfo' from='PHP 5 >= 5.3.0'/>
|
||||
|
|
Loading…
Reference in a new issue