mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-29 23:38:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@78496 c90b9560-bf6c-de11-be94-00142212c4b1
73 lines
2 KiB
XML
73 lines
2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.2 $ -->
|
|
<!-- splitted from ./en/functions/nis.xml, last change in rev 1.2 -->
|
|
<refentry id="function.yp-next">
|
|
<refnamediv>
|
|
<refname>yp_next</refname>
|
|
<refpurpose>Returns the next key-value pair in the named
|
|
map.</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>yp_next</methodname>
|
|
<methodparam><type>string</type><parameter>domain</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>map</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>key</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>yp_next</function> returns the next key-value pair in
|
|
the named map after the specified key or &false;.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Example for NIS next</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$entry = yp_next ($domain, "passwd.byname", "joe");
|
|
|
|
if (!$entry) {
|
|
echo "No more entries found\n";
|
|
<!-- echo yp_errno() . ": " . yp_err_string(); -->
|
|
}
|
|
|
|
$key = key ($entry);
|
|
|
|
echo "The next entry after joe has key " . $key
|
|
. " and value " . $entry[$key];
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
See also <function>yp-get-default-domain</function>.
|
|
<!--
|
|
<link linkend="function.yp-errno">yp_errno</link> and <link
|
|
linkend="function.yp-err-string">yp_err_string</link>
|
|
-->
|
|
</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
|
|
-->
|