1
0
mirror of https://github.com/php/doc-tr.git synced 2026-03-24 23:32:06 +01:00
Files
Nilgün Belma Bugüner b2ebc8d19c new translation
2021-03-16 18:40:25 +03:00

107 lines
2.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: e095023e408c8cb6378ae16bb6870343a3946919 Maintainer: nilgun Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="function.hex2bin">
<refnamediv>
<refname>hex2bin</refname>
<refpurpose>Onaltılık bir dizgeyi ikil dizgeye dönüştürür</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type class="union"><type>string</type><type>false</type></type><methodname>hex2bin</methodname>
<methodparam><type>string</type><parameter>dizge</parameter></methodparam>
</methodsynopsis>
<para>
Onaltılık bir dizgeyi ikil dizgeye dönüştürür.
</para>
<caution>
<para>
Bu işlev onaltılık bir sayıyı ikil bir sayıya dönüştürmez. Bunun için
<function>base_convert</function> işlevi kullanılabilir.
</para>
</caution>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<variablelist>
<varlistentry>
<term><parameter>dizge</parameter></term>
<listitem>
<para>
Verinin onaltılık gösterimi.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Başarı durumunda belirtilen verinin ikil gösterimini,&return.falseforfailure;.
</para>
</refsect1>
<refsect1 role="errors">
&reftitle.errors;
<para>
Onaltılık dizge uzunluğu bir çift sayı değilse veya geçersiz bir onaltılık
dizge ise <constant>E_WARNING</constant> seviyesinde bir hata çıktılanır.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<example xml:id="hex2bin.example.basic">
<title>- <function>hex2bin</function> örneği</title>
<programlisting role="php">
<![CDATA[
<?php
$hex = hex2bin("6578616d706c65206865782064617461");
var_dump($hex);
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
string(16) "example hex data"
]]>
</screen>
</example>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>bin2hex</function></member>
<member><function>unpack</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
-->