1
0
mirror of https://github.com/php/doc-tr.git synced 2026-04-23 15:08:01 +02:00
Files
2022-11-17 16:43:57 +03:00

135 lines
3.7 KiB
XML
Raw Permalink 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: 14dc7c47365f2b71f6c907a5ba5bccf42534d5a9 Maintainer: nilgun Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.socket-last-error">
<refnamediv>
<refname>socket_last_error</refname>
<refpurpose>Soket üzerindeki son hatanın kodunu döndürür</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>int</type><methodname>socket_last_error</methodname>
<methodparam choice="opt"><type class="union"><type>Socket</type><type>null</type></type><parameter>soket</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<para>
İşlev <parameter>soket</parameter> bağımsız değişkeni belirtilerek kullanılırsa
belirtilen soket üzerinde son oluşan hatanın kodu döndürülür.
Bir <classname>Socket</classname> nesnesi
belirtilmezse başarısız olan son işlemle ilgili hata numarası döner.
İşlev, bir hata durumunda bir <classname>Socket</classname> nesnesi
döndürmeyen <function>socket_create</function> ve belli bir soketle
doğrudan ilişkili olmayan bir sebeple başarısız olabilen
<function>socket_select</function> gibi işlevler için de yararlıdır.
Elde edilen hata kodunu <function>socket_strerror</function> işlevinde
kullanarak hatanın açıklamasına içeren bir dizge almak mümkündür.
</para>
<para>
Hiç hata oluşmamışsa veya hata <function>socket_clear_error</function> ile
temizlenmişse, işlev <literal>0</literal> döndürür.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>soket</parameter></term>
<listitem>
<para>
<function>socket_create</function> ile oluşturulmuş geçerli bir
<classname>Socket</classname> nesnesi .
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Bir soket hata kodu döner.
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
&sockets.changelog.socket-param;
<row>
<entry>8.0.0</entry>
<entry>
<parameter>soket</parameter> artık &null; olabiliyor.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>- <function>socket_last_error</function> örneği</title>
<programlisting role="php">
<![CDATA[
<?php
$socket = @socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if ($socket === false) {
$errorcode = socket_last_error();
$errormsg = socket_strerror($errorcode);
die("Soket oluşturulamadı: [$errorcode] $errormsg");
}
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
<refsect1 role="notes">
&reftitle.notes;
<note>
<para>
<function>socket_last_error</function> hata kodunu temizlemez, bunun için
<function>socket_clear_error</function> işlevini kullanın.
</para>
</note>
</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
-->