1
0
mirror of https://github.com/php/doc-tr.git synced 2026-04-26 16:38:05 +02:00
Files
2021-05-07 03:12:22 +03:00

112 lines
2.8 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" xml:id="function.strpbrk">
<refnamediv>
<refname>strpbrk</refname>
<refpurpose>Belirtilen karakterleri bir dizge içinde arar</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type class="union"><type>string</type><type>false</type></type><methodname>strpbrk</methodname>
<methodparam><type>string</type><parameter>dizge</parameter></methodparam>
<methodparam><type>string</type><parameter>karakterler</parameter></methodparam>
</methodsynopsis>
<para>
<function>strpbrk</function> işlevi <parameter>dizge</parameter>
içinde <parameter>karakterler</parameter>'den birini bulmaya çalışır.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>dizge</parameter></term>
<listitem>
<para>
Karakterlerin aranacağı dizge.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>karakterler</parameter></term>
<listitem>
<para>
Karakterler harf büyüklüğüne duyarlı olarak aranır.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Bulunan karakterle başlayan dizgeyi döndürür, aranan hiçbir karakter
bulunamazsa &false; döner.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>- <function>strpbrk</function> örneği</title>
<programlisting role="php">
<![CDATA[
<?php
$text = 'This is a Simple text.';
// ilk eşleşen 'i'den itibaren çıktılanacağından
// "is is a Simple text." basılır
echo strpbrk($text, 'mi');
// İşlev harf büyüklüğüne duyarlı arama yaptığından
// "Simple text." basılacaktır
echo strpbrk($text, 'S');
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>strpos</function></member>
<member><function>strstr</function></member>
<member><function>preg_match</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
-->