mirror of
https://github.com/php/doc-tr.git
synced 2026-03-24 23:32:06 +01:00
80 lines
2.2 KiB
XML
80 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- EN-Revision: 79cdc519d7e77aad4895cc80f56c4618ca5391e1 Maintainer: nilgun Status: ready -->
|
||
<refentry xml:id="streamwrapper.stream-eof" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||
<refnamediv>
|
||
<refname>streamWrapper::stream_eof</refname>
|
||
<refpurpose>Dosya göstericisinin dosya sonunda olup olmadığına bakar
|
||
</refpurpose>
|
||
</refnamediv>
|
||
|
||
<refsect1 role="description">
|
||
&reftitle.description;
|
||
<methodsynopsis>
|
||
<modifier>public</modifier> <type>bool</type><methodname>streamWrapper::stream_eof</methodname>
|
||
<void />
|
||
</methodsynopsis>
|
||
<para>
|
||
Bu yöntem, <function>feof</function> işlevine yanıtta çağrılır.
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="parameters">
|
||
&reftitle.parameters;
|
||
&no.function.parameters;
|
||
</refsect1>
|
||
|
||
<refsect1 role="returnvalues">
|
||
&reftitle.returnvalues;
|
||
<para>
|
||
Oku/yaz konumu akımın sonundaysa ve okunacak başka veri kalmamışsa &true;
|
||
yoksa &false; dönmelidir.
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="notes"><!-- {{{ -->
|
||
&reftitle.notes;
|
||
<warning>
|
||
<para>
|
||
Tüm dosyayı okurken (örneğin, <function>file_get_contents</function> ile),
|
||
PHP bir döngü halinde önce
|
||
<methodname>streamWrapper::stream_read</methodname> ve ardından
|
||
<methodname>streamWrapper::stream_eof</methodname> öğesini çağırır, ancak
|
||
<methodname>streamWrapper::stream_read</methodname> boş olmayan bir dizge
|
||
döndürdüğü sürece, <methodname>streamWrapper::stream_eof</methodname>'un
|
||
dönüş değeri yok sayılır.
|
||
</para>
|
||
</warning>
|
||
</refsect1><!-- }}} -->
|
||
|
||
<refsect1 role="seealso">
|
||
&reftitle.seealso;
|
||
<para>
|
||
<simplelist>
|
||
<member><function>feof</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:"~/.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
|
||
-->
|