mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-29 07:18:55 +00:00
93 lines
2.3 KiB
XML
93 lines
2.3 KiB
XML
![]() |
<?xml version='1.0' encoding='iso-8859-1'?>
|
||
|
<!-- $Revision: 1.1 $ -->
|
||
|
<refentry xml:id="recursiveregexiterator.haschildren" xmlns="http://docbook.org/ns/docbook">
|
||
|
<refnamediv>
|
||
|
<refname>RecursiveRegexIterator::hasChildren</refname>
|
||
|
<refpurpose>Returns whether an iterator can be obtained for the current entry.</refpurpose>
|
||
|
</refnamediv>
|
||
|
<refsect1 role="description">
|
||
|
&reftitle.description;
|
||
|
<methodsynopsis>
|
||
|
<modifier>public</modifier> <type>bool</type><methodname>RecursiveRegexIterator::hasChildren</methodname>
|
||
|
<void/>
|
||
|
</methodsynopsis>
|
||
|
<para>
|
||
|
Returns whether an iterator can be obtained for the current entry. This iterator can be
|
||
|
obtained via <methodname>RecursiveRegexIterator::getChildren</methodname>.
|
||
|
</para>
|
||
|
|
||
|
</refsect1>
|
||
|
|
||
|
<refsect1 role="parameters">
|
||
|
&reftitle.parameters;
|
||
|
&no.function.parameters;
|
||
|
</refsect1>
|
||
|
|
||
|
<refsect1 role="returnvalues">
|
||
|
&reftitle.returnvalues;
|
||
|
<para>
|
||
|
Returns &true; if an iterator can be obtained for the current entry, otherwise returns &false;.
|
||
|
</para>
|
||
|
</refsect1>
|
||
|
|
||
|
<refsect1 role="examples">
|
||
|
&reftitle.examples;
|
||
|
<para>
|
||
|
<example>
|
||
|
<title><function>RecursiveRegexIterator::hasChildren</function> example</title>
|
||
|
<programlisting role="php">
|
||
|
<![CDATA[
|
||
|
<?php
|
||
|
$rArrayIterator = new RecursiveArrayIterator(array('test1', array('tet3', 'test4', 'test5')));
|
||
|
$rRegexIterator = new RecursiveRegexIterator($rArrayIterator, '/^test/',
|
||
|
RecursiveRegexIterator::ALL_MATCHES);
|
||
|
|
||
|
foreach ($rRegexIterator as $value) {
|
||
|
var_dump($rRegexIterator->hasChildren());
|
||
|
}
|
||
|
?>
|
||
|
]]>
|
||
|
</programlisting>
|
||
|
&example.outputs;
|
||
|
<screen>
|
||
|
<![CDATA[
|
||
|
bool(false)
|
||
|
bool(true)
|
||
|
]]>
|
||
|
</screen>
|
||
|
</example>
|
||
|
</para>
|
||
|
</refsect1>
|
||
|
|
||
|
<refsect1 role="seealso">
|
||
|
&reftitle.seealso;
|
||
|
<para>
|
||
|
<simplelist>
|
||
|
<member><function>RecursiveRegexIterator::getChildren</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:"../../../../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
|
||
|
-->
|