Документ взят из кэша поисковой машины. Адрес оригинального документа : http://oit.cmc.msu.ru/php/function.yp-first.html
Дата изменения: Sun Feb 3 22:58:21 2002
Дата индексирования: Mon Oct 1 21:17:10 2012
Кодировка:
yp_first

yp_first

(3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0)

yp_first --  Returns the first key-value pair from the named map

Description

array yp_first ( string domain, string map)

yp_first() returns the first key-value pair from the named map in the named domain, otherwise FALSE.

Example 1. Example for the NIS first

<?php
$entry = yp_first($domain, "passwd.byname");
$key = $entry ["key"];
$value = $entry ["value"];
echo "First entry in this map has key " . $key . " and value " . $value;
?>

See also yp-get-default-domain()