1
0
mirror of https://github.com/php/doc-de.git synced 2026-03-24 07:12:15 +01:00
Files
2024-12-23 17:02:43 +00:00

93 lines
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: dcb657b7e9e4f7622ce3394ae1fa3c14538721e1 Maintainer: samesch Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="simplexmlelement.next" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>SimpleXMLElement::next</refname>
<refpurpose>Springt zum nächsten Element</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis role="SimpleXMLElement">
<modifier>public</modifier> <type>void</type><methodname>SimpleXMLElement::next</methodname>
<void/>
</methodsynopsis>
<warning>
<simpara>
Vor PHP 8.0 war <methodname>SimpleXMLElement::next</methodname> nur in der
Kindklasse <classname>SimpleXMLIterator</classname> deklariert.
</simpara>
</warning>
<para>
Diese Methode verschiebt die Position von
<classname>SimpleXMLElement</classname> auf das nächste Element.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
&no.function.parameters;
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&return.void;
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Zum nächsten Element wechseln</title>
<programlisting role="php">
<![CDATA[
<?php
$xmlElement = new SimpleXMLElement('<books><book>PHP Basics</book><book>XML basics</book></books>');
$xmlElement->rewind(); // zurücksetzen auf das erste Element
$xmlElement->next();
var_dump($xmlElement->current());
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
object(SimpleXMLElement)#2 (1) {
[0]=>
string(10) "XML basics"
}
]]>
</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
-->