Files
php-doc-ru/reference/filesystem/functions/feof.xml
Alexey Pyltsyn b6ca497d04 Filesystem: improvements
git-svn-id: https://svn.php.net/repository/phpdoc/ru/trunk@344173 c90b9560-bf6c-de11-be94-00142212c4b1
2018-02-04 15:35:20 +00:00

125 lines
3.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 58e026c0572f50bfcbb447e07423641cf8062d6a Maintainer: shein Status: ready -->
<!-- Reviewed: yes -->
<!-- $Revision$ -->
<refentry xml:id="function.feof" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>feof</refname>
<refpurpose>Проверяет, достигнут ли конец файла</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>feof</methodname>
<methodparam><type>resource</type><parameter>handle</parameter></methodparam>
</methodsynopsis>
<para>
Проверяет, достигнут ли конец файла.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>handle</parameter></term>
<listitem>
&fs.validfp.all;
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Возвращает &true;, если указатель файла указывает на EOF или
произошла ошибка (в том числе тайм-аут сокета), иначе возвращает &false;.
</para>
</refsect1>
<refsect1 role="notes">
&reftitle.notes;
<warning>
<para>
Если подключение, открытое при помощи <function>fsockopen</function>,
не было закрыто сервером, <function>feof</function> повиснет.
Для варианта обхода этого поведения смотрите следующий пример:
<example>
<title>Обработка тайм-аутов с функцией <function>feof</function></title>
<programlisting role="php">
<![CDATA[
<?php
function safe_feof($fp, &$start = NULL) {
$start = microtime(true);
return feof($fp);
}
/* Предположим, что $fp был ранее открыт с помощью fsockopen() */
$start = NULL;
$timeout = ini_get('default_socket_timeout');
while(!safe_feof($fp, $start) && (microtime(true) - $start) < $timeout)
{
/* Обработка */
}
?>
]]>
</programlisting>
</example>
</para>
</warning>
<warning>
<para>
Если передан неверный файловый указатель, то вы можете получить
бесконечный цикл, так как <function>feof</function> не сможет
вернуть &true;.
<example>
<title>Пример <function>feof</function> с неверным файловым указателем</title>
<programlisting role="php">
<![CDATA[
<?php
// если файл не может быть прочтен или не существует, fopen вернет FALSE
$file = @fopen("no_such_file", "r");
// FALSE от fopen вызовет предупреждение и следующий цикл станет бесконечным
while (!feof($file)) {
}
fclose($file);
?>
]]>
</programlisting>
</example>
</para>
</warning>
</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
-->