mirror of
https://github.com/php/doc-tr.git
synced 2026-03-23 23:02:09 +01:00
Düzeltme için teşekkürler. Closes GH-28
This commit is contained in:
committed by
Nilgün Belma Bugüner
parent
2f4005c21f
commit
6b81a44d80
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: b809caa29bb6e48fe0fc90bbd9f4a3ea26062e83 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<appendix xml:id="tokens" xmlns="http://docbook.org/ns/docbook">
|
||||
<title>Çözümleyici Dizgeciklerinin Listesi</title>
|
||||
<para>
|
||||
@@ -466,12 +466,12 @@ defined('T_FN') || define('T_FN', 10001);
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>T_INCLUDE</constant></entry>
|
||||
<entry>include()</entry>
|
||||
<entry>include</entry>
|
||||
<entry><function>include</function></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>T_INCLUDE_ONCE</constant></entry>
|
||||
<entry>include_once()</entry>
|
||||
<entry>include_once</entry>
|
||||
<entry><function>include_once</function></entry>
|
||||
</row>
|
||||
<row>
|
||||
@@ -718,7 +718,7 @@ defined('T_FN') || define('T_FN', 10001);
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>T_PRINT</constant></entry>
|
||||
<entry>print()</entry>
|
||||
<entry>print</entry>
|
||||
<entry><function>print</function></entry>
|
||||
</row>
|
||||
<row>
|
||||
@@ -752,12 +752,12 @@ defined('T_FN') || define('T_FN', 10001);
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>T_REQUIRE</constant></entry>
|
||||
<entry>require()</entry>
|
||||
<entry>require</entry>
|
||||
<entry><function>require</function></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>T_REQUIRE_ONCE</constant></entry>
|
||||
<entry>require_once()</entry>
|
||||
<entry>require_once</entry>
|
||||
<entry><function>require_once</function></entry>
|
||||
</row>
|
||||
<row>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 1dd897816d8282d985cf78b42a3b723e0ce86d56 Maintainer: yasar Status: ready -->
|
||||
<!-- EN-Revision: 25338384fe801da952d3d864e9174dd590837e24 Maintainer: yasar Status: ready -->
|
||||
<chapter xml:id="features.commandline" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>PHP'nin komut satırından kullanımı</title>
|
||||
<titleabbrev>Komut satırından kullanım</titleabbrev>
|
||||
@@ -1261,7 +1261,7 @@ Bu tek seçenekli bir komut satırı PHP betiğidir.
|
||||
<example>
|
||||
<title>- Bir komut satırı PHP betiği çalıştırmak için yığın dosyası
|
||||
(betik.bat)</title>
|
||||
<programlisting role="shell">
|
||||
<programlisting role="winbat">
|
||||
<![CDATA[
|
||||
@echo OFF
|
||||
"C:\php\php.exe" script.php %*
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 17297101a4e423420de52d6ef389403bfbd3cf7f Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<sect1 xml:id="control-structures.declare" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>declare</title>
|
||||
<?phpdoc print-version-for="declare"?>
|
||||
@@ -121,7 +121,7 @@ $a = 1; //tik olayına sebep olur
|
||||
|
||||
if ($a > 0) {
|
||||
$a += 2; //tik olayına sebep olur
|
||||
print($a); //tik olayına sebep olur
|
||||
print $a; //tik olayına sebep olur
|
||||
}
|
||||
?>
|
||||
]]>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- EN-Revision: a5ddf6c612685c2c0e5c3b3a7e8b719ced0a929b Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: a442778670dd2dde02af237a2de06048c59cb8cd Maintainer: nilgun Status: ready -->
|
||||
<chapter xml:id="language.namespaces" xmlns="http://docbook.org/ns/docbook"
|
||||
version="1.1">
|
||||
<title>İsim Alanları</title>
|
||||
@@ -1173,9 +1173,8 @@ A\B::fan(); // "A\A" isim alanında tanımlı "B" sınıfının "fan" yöntemi
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<link linkend="language.namespaces.faq.builtinconst">Özel NULL, TRUE,
|
||||
FALSE, ZEND_THREAD_SAFE ve ZEND_DEBUG_BUILD sabitleri geçersiz
|
||||
kılınamaz.</link>
|
||||
<link linkend="language.namespaces.faq.builtinconst">Özel &null;, &true;
|
||||
veya &false; sabitleri geçersiz kılınamaz.</link>
|
||||
</simpara>
|
||||
</listitem>
|
||||
</orderedlist>
|
||||
@@ -1560,7 +1559,7 @@ $a = \Fin\FAN; // ölümcül hata, isim alanlı tanımsız sabit: Fin\FAN
|
||||
</para>
|
||||
</sect2>
|
||||
<sect2 xml:id="language.namespaces.faq.builtinconst">
|
||||
<title>Özel NULL, TRUE, FALSE, ZEND_THREAD_SAFE ve ZEND_DEBUG_BUILD
|
||||
<title>Özel &null;, &true; veya &false;
|
||||
sabitleri geçersiz kılınamaz.</title>
|
||||
<para>
|
||||
Bir özel, yerleşik sabiti bir isim alanlı sabit olarak tanımlamaya
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 9ee9eccf455188ab6eb352194eb6f9eb99e15606 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<!-- CREDITS: tpug, sezer -->
|
||||
<sect1 xml:id="language.oop5.cloning" xmlns="http://docbook.org/ns/docbook">
|
||||
<title>Nesne Kopyalama</title>
|
||||
@@ -95,10 +95,10 @@ $nes->nesne2 = new AltNesne();
|
||||
$nes2 = clone $nes;
|
||||
|
||||
|
||||
print("Özgün Nesne:\n");
|
||||
print "Özgün Nesne:\n";
|
||||
print_r($nes);
|
||||
|
||||
print("Kopya Nesne:\n");
|
||||
print "Kopya Nesne:\n";
|
||||
print_r($nes2);
|
||||
?>
|
||||
]]></programlisting>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ba6a83ca3558574695be5ef0a0e008e4e5f78ddb Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 1f407ffe61c42c203c99ff0bacc1ae82b3414621 Maintainer: nilgun Status: ready -->
|
||||
<sect1 xml:id="language.oop5.serialization" xmlns="http://docbook.org/ns/docbook">
|
||||
<title>Nesne Dizgeleştirme</title>
|
||||
<title>Oturumlardaki nesnelerin dizgeleştirilmesi</title>
|
||||
@@ -30,7 +30,7 @@
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
// classa.inc:
|
||||
// A.php:
|
||||
|
||||
class A {
|
||||
public $one = 1;
|
||||
@@ -42,7 +42,7 @@
|
||||
|
||||
// page1.php:
|
||||
|
||||
include("classa.inc");
|
||||
include "A.php";
|
||||
|
||||
$a = new A;
|
||||
$s = serialize($a);
|
||||
@@ -52,7 +52,7 @@
|
||||
// page2.php:
|
||||
|
||||
// unserialize işlevinin düzgün çalışması için gerekli
|
||||
include("classa.inc");
|
||||
include "A.php";
|
||||
|
||||
$s = file_get_contents('store');
|
||||
$a = unserialize($s);
|
||||
@@ -77,7 +77,7 @@
|
||||
<para>
|
||||
Yani, yukarıdaki örnekte, eğer <varname>$_SESSION</varname> süper küresel
|
||||
dizisine yeni bir anahtar ekleyerek <varname>$a</varname> bir oturumun
|
||||
parçası haline gelirse, <literal>classa.inc</literal> dosyası yalnız
|
||||
parçası haline gelirse, <literal>A.php</literal> dosyası yalnız
|
||||
<filename>page1.php</filename> ve <filename>page2.php</filename>
|
||||
dosyalarına değil tüm sayfa dosyalarına dahil edilmelidir.
|
||||
</para>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 681fd84dbdef6c0f8fe92848677d95a993b66143 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: fe11910e25e7eba44959bd347ba946ffc4d56934 Maintainer: nilgun Status: ready -->
|
||||
<part xml:id="reserved.attributes" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Ön tanımlı Öznitelikler</title>
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
&language.predefined.attributes.attribute;
|
||||
&language.predefined.attributes.allowdynamicproperties;
|
||||
&language.predefined.attributes.override;
|
||||
&language.predefined.attributes.returntypewillchange;
|
||||
&language.predefined.attributes.sensitiveparameter;
|
||||
</part>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 1f7a0e4af85d1b74595626afa1ca774c896e8388 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 49b7f738f43c1ea2113cc7931357a10224824539 Maintainer: nilgun Status: ready -->
|
||||
<!-- CREDITS: haluk -->
|
||||
<part xml:id="reserved.exceptions" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Öntanımlı İstisnalar</title>
|
||||
@@ -12,6 +12,7 @@
|
||||
|
||||
&language.predefined.exception;
|
||||
&language.predefined.errorexception;
|
||||
&language.predefined.closedgeneratorexception;
|
||||
|
||||
<!-- If this is updated, you should also update the hierarchy in
|
||||
language/errors/php7.xml. -->
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: d494ffa4d9f83b60fe66972ec2c0cf0301513b4a Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: a1e3d629b4f01ee41bd38391cd5c6ae5ee894cb3 Maintainer: nilgun Status: ready -->
|
||||
<sect1 xml:id="language.types.float" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>float</title>
|
||||
|
||||
@@ -31,7 +31,7 @@ $d = 1_234.567; // PHP 7.4.0 ve sonrası
|
||||
<programlisting>
|
||||
<![CDATA[
|
||||
LNUM [0-9]+(_[0-9]+)*
|
||||
DNUM ([0-9]*(_[0-9]+)*[\.]{LNUM}) | ({LNUM}[\.][0-9]*(_[0-9]+)*)
|
||||
DNUM ({LNUM}?"."{LNUM}) | ({LNUM}"."{LNUM}?)
|
||||
EXPONENT_DNUM (({LNUM} | {DNUM}) [eE][+-]? {LNUM})
|
||||
]]>
|
||||
</programlisting>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 010bb6179a6f35b826a6c5026454b5dcf3997e63 Maintainer: aydin Status: ready -->
|
||||
<!-- EN-Revision: 94ef70805b847c24941dfd7828df2f5a0fd48c96 Maintainer: aydin Status: ready -->
|
||||
|
||||
<book xml:id="book.com" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<?phpdoc extension-membership="bundled" ?>
|
||||
@@ -58,6 +58,7 @@
|
||||
&reference.com.variant;
|
||||
&reference.com.compersisthelper;
|
||||
&reference.com.com-exception;
|
||||
&reference.com.com-safearray-proxy;
|
||||
&reference.com.reference;
|
||||
|
||||
</book>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ab0006771069b6deaccdb44522a6312adaa91b35 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: c957c4c205b18978e0bf318b24978e92c70e19ee Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="function.curl-setopt" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>curl_setopt</refname>
|
||||
@@ -287,7 +287,7 @@
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry valign="top"><constant>CURLOPT_HTTP09_ALLOWED </constant></entry>
|
||||
<entry valign="top"><constant>CURLOPT_HTTP09_ALLOWED</constant></entry>
|
||||
<entry valign="top">
|
||||
HTTP/0.9 yanıtlarına izin verilecek mi? libcurl 7.66.0 itibariyle
|
||||
&false; öncesinde &true;.
|
||||
@@ -645,7 +645,7 @@
|
||||
<row>
|
||||
<entry valign="top"><constant>CURLOPT_EXPECT_100_TIMEOUT_MS</constant></entry>
|
||||
<entry valign="top">
|
||||
Expect için zaman aşımı: Milisaniye cinsinden 100 devam yanıtı.
|
||||
Milisaniye cinsinden <literal>Expect: cinsinden 100 devam</literal> yanıtları için zaman aşımı.
|
||||
Öntanımlı 1000 milisaniyedir.
|
||||
</entry>
|
||||
<entry valign="top">
|
||||
@@ -718,7 +718,7 @@
|
||||
<constant>CURL_HTTP_VERSION_1_0</constant> (HTTP/1.0 zorlanır),
|
||||
<constant>CURL_HTTP_VERSION_1_1</constant> (HTTP/1.1 zorlanır),
|
||||
<constant>CURL_HTTP_VERSION_2_0</constant> (HTTP 2 için çabalar),
|
||||
<constant>CURL_HTTP_VERSION_2 </constant>
|
||||
<constant>CURL_HTTP_VERSION_2</constant>
|
||||
(<constant>CURL_HTTP_VERSION_2_0</constant> için takma ad),
|
||||
<constant>CURL_HTTP_VERSION_2TLS</constant> (sadece TLS (HTTPS)
|
||||
üzerinden HTTP 2 için çabalar) veya
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 2aa5a9c4505a5307b2455f5a7d0b7ca1cb38e6c5 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 9b18516d6feb02d12056f8c7e88d0e83082e2e79 Maintainer: nilgun Status: ready -->
|
||||
<book xml:id="book.dom" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<?phpdoc extension-membership="bundledexternal" ?>
|
||||
<title>Belge Nesne Modeli</title>
|
||||
@@ -32,6 +32,7 @@
|
||||
&reference.dom.domexception;
|
||||
&reference.dom.domimplementation;
|
||||
&reference.dom.domnamednodemap;
|
||||
&reference.dom.domnamespacenode;
|
||||
&reference.dom.domnode;
|
||||
&reference.dom.domnodelist;
|
||||
&reference.dom.domnotation;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 14767af0f05dffa6fdb9b49e1a1f4e9ca7022a60 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 2327968bca8962f3dad7600bef93341e06da7655 Maintainer: nilgun Status: ready -->
|
||||
<phpdoc:classref xml:id="class.domcdatasection" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
|
||||
<title>DOMCdataSection sınıfı</title>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 14767af0f05dffa6fdb9b49e1a1f4e9ca7022a60 Maintainer: haluk Status: ready -->
|
||||
<!-- EN-Revision: fa6a5829a0d00c24eea2ed9a270e4b56f73c032f Maintainer: haluk Status: ready -->
|
||||
<phpdoc:classref xml:id="class.domdocument" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<title>DOMDocument sınıfı</title>
|
||||
<titleabbrev>DOMDocument</titleabbrev>
|
||||
@@ -106,7 +106,6 @@
|
||||
<modifier>readonly</modifier>
|
||||
<type>mixed</type>
|
||||
<varname linkend="domdocument.props.config">config</varname>
|
||||
<initializer>null</initializer>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 4f5e2b22575131fa5e9c3004b1c874e1acb06573 Maintainer: haluk Status: ready -->
|
||||
<!-- EN-Revision: 68b6b98138cb53182d7b32fa13ca9663d8526909 Maintainer: haluk Status: ready -->
|
||||
<refentry xml:id="domnodelist.item" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>DOMNodelist::item</refname>
|
||||
@@ -8,8 +8,7 @@
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis role="DOMNodeList">
|
||||
<modifier>public</modifier>
|
||||
<type class="union"><type>DOMNode</type><type>DOMNameSpaceNode</type><type>null</type></type><methodname>DOMNodeList::item</methodname>
|
||||
<modifier>public</modifier> <type class="union"><type>DOMElement</type><type>DOMNode</type><type>DOMNameSpaceNode</type><type>null</type></type><methodname>DOMNodeList::item</methodname>
|
||||
<methodparam><type>int</type><parameter>index</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: bfadfd1c4c3ba654b1d3324d9425dd1c07fea906 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: f40e02ff1bd0eb238dc8e542434004de9eb03a58 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="function.exif-imagetype" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>exif_imagetype</refname>
|
||||
@@ -137,6 +137,10 @@
|
||||
<entry>18</entry>
|
||||
<entry><constant>IMAGETYPE_WEBP</constant></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>19</entry>
|
||||
<entry><constant>IMAGETYPE_AVIF</constant></entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
@@ -166,6 +170,12 @@
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>8.1.0</entry>
|
||||
<entry>
|
||||
Added desteği eklendi.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>7.1.0</entry>
|
||||
<entry>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 2ab45105b4302f7eed510a629226956ee0ab5be3 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 7b68fb17124ccf73ed0c98974d90977a69ea0425 Maintainer: nilgun Status: ready -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="function.hash-pbkdf2">
|
||||
<refnamediv>
|
||||
<refname>hash_pbkdf2</refname>
|
||||
@@ -144,7 +144,7 @@
|
||||
<![CDATA[
|
||||
<?php
|
||||
$parola = "password";
|
||||
$yineleme = 1000;
|
||||
$yineleme = 600000;
|
||||
|
||||
// random_bytes() kullanarak kriptografik olarak güvenli rastgele tuz üret
|
||||
$tuz = random_bytes(16);
|
||||
@@ -185,14 +185,9 @@ string(20) "120fb6cffcf8b32c43e7"
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>crypt</function></member>
|
||||
<member><function>password_hash</function></member>
|
||||
<member><function>hash</function></member>
|
||||
<member><function>hash_algos</function></member>
|
||||
<member><function>hash_init</function></member>
|
||||
<member><function>hash_hmac</function></member>
|
||||
<member><function>hash_hmac_file</function></member>
|
||||
<member><function>openssl_pbkdf2</function></member>
|
||||
<member><function>hash_hkdf</function></member>
|
||||
<member><function>sodium_crypto_pwhash</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ef24d91830c7cfcccf469ba40b031b141582ed69 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 9ba738103b63ee4f129dadf3f8585568609e63b7 Maintainer: nilgun Status: ready -->
|
||||
<section xml:id="image.installation" xmlns="http://docbook.org/ns/docbook">
|
||||
&reftitle.install;
|
||||
<para>
|
||||
@@ -34,6 +34,14 @@
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry><literal>avif</literal></entry>
|
||||
<entry>
|
||||
Avif desteğini etkinleştirmek için <option role="configure">
|
||||
--with-avif</option> seçeneği kullanılır.
|
||||
PHP 8.1.0'dan itibaren kullanılabilir.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>jpeg</literal></entry>
|
||||
<entry>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 0c9c2dd669fe9395eaa73d487fbd160f9057429a Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: f40e02ff1bd0eb238dc8e542434004de9eb03a58 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="function.image-type-to-mime-type" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>image_type_to_mime_type</refname>
|
||||
@@ -121,6 +121,10 @@
|
||||
<entry><constant>IMAGETYPE_WEBP</constant></entry>
|
||||
<entry><literal>image/webp</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><constant>IMAGETYPE_AVIF</constant></entry>
|
||||
<entry><literal>image/avif</literal></entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 0dc83c63939c9196cbc19b6fa9bc6fabb89e6a8c Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 9ba738103b63ee4f129dadf3f8585568609e63b7 Maintainer: nilgun Status: ready -->
|
||||
<chapter xml:id="image.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
&reftitle.setup;
|
||||
|
||||
@@ -46,6 +46,11 @@
|
||||
<entry></entry>
|
||||
<entry></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>avif</literal></entry>
|
||||
<entry></entry>
|
||||
<entry></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>jpeg</literal></entry>
|
||||
<entry><link xlink:href="&url.jpeg;">&url.jpeg;</link></entry>
|
||||
@@ -73,6 +78,11 @@
|
||||
demektir.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>webp</literal></entry>
|
||||
<entry></entry>
|
||||
<entry></entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 34892f82742329af7e7b4b22be6ad21418fd9768 Maintainer: haluk Status: ready -->
|
||||
<!-- EN-Revision: 673d373eda1740843eaef88e9665eb887f6f5752 Maintainer: haluk Status: ready -->
|
||||
<refentry xml:id="function.imap-expunge" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>imap_expunge</refname>
|
||||
@@ -9,7 +9,7 @@
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>imap_expunge</methodname>
|
||||
<type>true</type><methodname>imap_expunge</methodname>
|
||||
<methodparam><type>IMAP\Connection</type><parameter>imap</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
@@ -31,7 +31,7 @@
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
&true; döner.
|
||||
&return.true.always;
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: d845236a60b26f8ec552298676ce185cfbb794b6 Maintainer: haluk Status: ready -->
|
||||
<!-- EN-Revision: 673d373eda1740843eaef88e9665eb887f6f5752 Maintainer: haluk Status: ready -->
|
||||
<refentry xml:id="function.imap-undelete" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>imap_undelete</refname>
|
||||
@@ -8,7 +8,7 @@
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>imap_undelete</methodname>
|
||||
<type>true</type><methodname>imap_undelete</methodname>
|
||||
<methodparam><type>IMAP\Connection</type><parameter>imap</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>ileti_num</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>int</type><parameter>seçenekler</parameter><initializer>0</initializer></methodparam>
|
||||
@@ -45,7 +45,7 @@
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
&return.success;
|
||||
&return.true.always;
|
||||
</para>
|
||||
</refsect1>
|
||||
<refsect1 role="changelog">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 389525942dd551c9b1943d404d76c03ab4a6203b Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: ada1d79de35239334b68d0120b011530e31244ff Maintainer: nilgun Status: ready -->
|
||||
<appendix xml:id="info.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
&reftitle.constants;
|
||||
&extension.constants.core;
|
||||
@@ -214,6 +214,7 @@
|
||||
<entry><link linkend="ini.assert.active">assert.active</link></entry>
|
||||
<entry>
|
||||
<function>assert</function> değerlendirmesi etkin kılınır.
|
||||
&warn.deprecated.feature-8-3-0;
|
||||
</entry>
|
||||
</row>
|
||||
<row xml:id="constant.assert-callback">
|
||||
@@ -221,6 +222,7 @@
|
||||
<entry><link linkend="ini.assert.callback">assert.callback</link></entry>
|
||||
<entry>
|
||||
Savın başarısızlığı halinde çağrılacak geriçağırım işlevi.
|
||||
&warn.deprecated.feature-8-3-0;
|
||||
</entry>
|
||||
</row>
|
||||
<row xml:id="constant.assert-bail">
|
||||
@@ -228,6 +230,7 @@
|
||||
<entry><link linkend="ini.assert.bail">assert.bail</link></entry>
|
||||
<entry>
|
||||
Savın başarısızlığı halinde çalışma durdurulur.
|
||||
&warn.deprecated.feature-8-3-0;
|
||||
</entry>
|
||||
</row>
|
||||
<row xml:id="constant.assert-exception">
|
||||
@@ -235,6 +238,7 @@
|
||||
<entry><link linkend="ini.assert.exception">assert.exception</link></entry>
|
||||
<entry>
|
||||
Savın başarısızlığı halinde PHP uyarısı verilir.
|
||||
&warn.deprecated.feature-8-3-0;
|
||||
</entry>
|
||||
</row>
|
||||
<row xml:id="constant.assert-warning">
|
||||
@@ -242,6 +246,7 @@
|
||||
<entry><link linkend="ini.assert.warning">assert.warning</link></entry>
|
||||
<entry>
|
||||
Her başarısız sav için bir PHP uyarısı çıktılanır.
|
||||
&warn.deprecated.feature-8-3-0;
|
||||
</entry>
|
||||
</row>
|
||||
<row xml:id="constant.assert-quiet-eval">
|
||||
@@ -249,7 +254,7 @@
|
||||
<entry><link linkend="ini.assert.quiet-eval">assert.quiet_eval</link></entry>
|
||||
<entry>
|
||||
Sav ifadesinin değerlendirilmesi sırasında hata raporlama kapatılır.
|
||||
PHP 8.0.0 itibariyle kaldırıldı.
|
||||
&warn.feature.removed-8-0-0;
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
||||
@@ -1,11 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 389525942dd551c9b1943d404d76c03ab4a6203b Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: ada1d79de35239334b68d0120b011530e31244ff Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="function.assert-options" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>assert_options</refname>
|
||||
<refpurpose>Çeşitli kararlılık denetim seçeneklerini açar/kapar</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv>
|
||||
&warn.deprecated.function-8-3-0;
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
@@ -187,6 +191,12 @@
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>8.3.0</entry>
|
||||
<entry>
|
||||
<function>assert_option</function> artık kullanımdan kaldırılmıştır.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>8.0.0</entry>
|
||||
<entry>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 4becab9a7ec0f1a8f49d38b7b96d5f218d0361b3 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 2df224f44552cfc88fad705cca33c4cdb01d62ed Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="function.cli-set-process-title" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>cli_set_process_title</refname>
|
||||
@@ -93,7 +93,6 @@ if (!cli_set_process_title($title)) {
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>cli_get_process_title</function></member>
|
||||
<member><function>setproctitle</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 1976eae0d815797af97a1e16c5cd90ffc2868395 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 8eec6fe5573d8de8fa65ac04974c8b637d832753 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="collator.setstrength" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>Collator::setStrength</refname>
|
||||
@@ -65,7 +65,7 @@
|
||||
Büyük ve küçük harfler arasındaki farklar üçüncül seviyeden
|
||||
farklardandır (örneğin, "ao" < "Ao" < "aò"). Buna ek olarak, bir
|
||||
harfin büyük veya küçük harflisinin temel karakterlerden farkları da
|
||||
("A" ve " " gibi) üçüncül seviyedendir. Bu farklara diğer bir örnek de
|
||||
("A" ve "𝒶" gibi) üçüncül seviyedendir. Bu farklara diğer bir örnek de
|
||||
büyük ve küçük Kana arasındaki farktır. Dizgelerin içinde
|
||||
herhangi bir yerde bir birincil veya ikincil seviyeden farkın varlığında
|
||||
üçüncül seviyeden bir fark yoksayılır. Buna ayrıca
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- EN-Revision: 6e6c154057b6d96518de039f40ff1e4feb44b04f Maintainer: haluk Status: ready -->
|
||||
<!-- EN-Revision: 43e445b1ec65410021f40bc55d7c670a64402816 Maintainer: haluk Status: ready -->
|
||||
<section xml:id="intl.numberformatter-constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
&reftitle.constants;
|
||||
|
||||
@@ -171,7 +171,7 @@
|
||||
<constant>NumberFormatter::TYPE_CURRENCY</constant>
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>Para birimi olarak çözümle/biçemle</simpara>
|
||||
<simpara>Para birimi olarak çözümle/biçemle. PHP 8.3.0'dan itibaren kullanımdan kaldırılmıştır</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 4724b47c25b48f509355d27291aa6893ad0b40c0 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 90afcd69fcd42a060617540aab6d5be97dfc4fe1 Maintainer: nilgun Status: ready -->
|
||||
<phpdoc:classref
|
||||
xmlns:phpdoc="http://php.net/ns/phpdoc"
|
||||
xml:id="class.libxmlerror"
|
||||
xmlns="http://docbook.org/ns/docbook"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<title>libXMLError sınıfı</title>
|
||||
<titleabbrev>libXMLError</titleabbrev>
|
||||
<title>LibXMLError sınıfı</title>
|
||||
<titleabbrev>LibXMLError</titleabbrev>
|
||||
|
||||
<partintro>
|
||||
|
||||
<!-- {{{ libXMLError intro -->
|
||||
<!-- {{{ LibXMLError intro -->
|
||||
<section xml:id="libxmlerror.intro">
|
||||
&reftitle.intro;
|
||||
<para>
|
||||
@@ -29,12 +29,12 @@
|
||||
|
||||
<!-- {{{ Synopsis -->
|
||||
<classsynopsis>
|
||||
<ooclass><classname>libXMLError</classname></ooclass>
|
||||
<ooclass><classname>LibXMLError</classname></ooclass>
|
||||
|
||||
<!-- {{{ Class synopsis -->
|
||||
<classsynopsisinfo>
|
||||
<ooclass>
|
||||
<classname>libXMLError</classname>
|
||||
<classname>LibXMLError</classname>
|
||||
</ooclass>
|
||||
</classsynopsisinfo>
|
||||
<!-- }}} -->
|
||||
@@ -74,7 +74,7 @@
|
||||
<!-- }}} -->
|
||||
</section>
|
||||
|
||||
<!-- {{{ libXMLError properties -->
|
||||
<!-- {{{ LibXMLError properties -->
|
||||
<section xml:id="libxmlerror.props">
|
||||
&reftitle.properties;
|
||||
<variablelist>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 65a007a4c04dd0793d07a1a067880dde9b39167a Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: e0b70f68d03701ce531be0025af19cdcfe333782 Maintainer: nilgun Status: ready -->
|
||||
<appendix xml:id="outcontrol.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
&reftitle.examples;
|
||||
|
||||
@@ -65,7 +65,7 @@ var_dump(ini_get('url_rewriter.tags'));
|
||||
output_add_rewrite_var('test', 'value');
|
||||
?>
|
||||
<a href="//php.net/index.php?bug=1234">bug1234</a>
|
||||
<form action="https://php.net/?bug=1234&edit=1" action="post">
|
||||
<form action="https://php.net/?bug=1234&edit=1" method="post">
|
||||
<input type="text" name="title" />
|
||||
</form>
|
||||
]]>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 8a058e9acded067eaa1bd445ed6943158e7311df Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: daf4cc624df3c21d472149725feb377b1beedb04 Maintainer: nilgun Status: ready -->
|
||||
<book xml:id="book.pdo" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<?phpdoc extension-membership="bundled" ?>
|
||||
<title>PHP Veri Nesneleri</title>
|
||||
@@ -42,6 +42,7 @@
|
||||
|
||||
&reference.pdo.pdo;
|
||||
&reference.pdo.pdostatement;
|
||||
&reference.pdo.pdorow;
|
||||
&reference.pdo.pdoexception;
|
||||
|
||||
&reference.pdo.drivers;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 082ddc19f53e6e254010de1a1fbbe485ff744ec1 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="pdo.exec" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>PDO::exec</refname>
|
||||
@@ -91,7 +91,7 @@ $dbh = new PDO('odbc:sample', 'db2inst1', 'ibmdb2');
|
||||
$count = $dbh->exec("DELETE FROM fruit");
|
||||
|
||||
/* Silinen satır sayısını döndürelim */
|
||||
print("$count satır silindi.\n");
|
||||
print "$count satır silindi.\n";
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 082ddc19f53e6e254010de1a1fbbe485ff744ec1 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="pdostatement.bindparam" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>PDOStatement::bindParam</refname>
|
||||
@@ -177,7 +177,7 @@ $colour = 'red';
|
||||
$sth = $dbh->prepare('CALL puree_fruit(?)');
|
||||
$sth->bindParam(1, $colour, PDO::PARAM_STR|PDO::PARAM_INPUT_OUTPUT, 12);
|
||||
$sth->execute();
|
||||
print("Meyvenin posa rengi: $colour");
|
||||
print "Meyvenin posa rengi: $colour";
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 082ddc19f53e6e254010de1a1fbbe485ff744ec1 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="pdostatement.columncount" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>PDOStatement::columnCount</refname>
|
||||
@@ -64,13 +64,13 @@ $sth = $dbh->prepare("SELECT name, colour FROM fruit");
|
||||
|
||||
/* Olmayan sonuç kümesindeki sütunları sayalım */
|
||||
$colcount = $sth->columnCount();
|
||||
print("execute() öncesi, sonuç kümesinde $colcount sütun var.\n");
|
||||
print "execute() öncesi, sonuç kümesinde $colcount sütun var.\n";
|
||||
|
||||
$sth->execute();
|
||||
|
||||
/* Sonuç kümesindeki sütunları sayalım */
|
||||
$colcount = $sth->columnCount();
|
||||
print("execute() sonrası, sonuç kümesinde $colcount sütun var.\n");
|
||||
print "execute() sonrası, sonuç kümesinde $colcount sütun var.\n";
|
||||
|
||||
?>
|
||||
]]>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 082ddc19f53e6e254010de1a1fbbe485ff744ec1 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="pdostatement.fetchall" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>PDOStatement::fetchAll</refname>
|
||||
@@ -164,7 +164,7 @@ $sth = $dbh->prepare("SELECT ad, renk FROM meyveler");
|
||||
$sth->execute();
|
||||
|
||||
/* Sonuç kümesindeki tüm satırları alalım */
|
||||
print("Sonuç kümesindeki tüm satırlar:\n");
|
||||
print "Sonuç kümesindeki tüm satırlar:\n";
|
||||
$result = $sth->fetchAll();
|
||||
print_r($result);
|
||||
?>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 082ddc19f53e6e254010de1a1fbbe485ff744ec1 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="pdostatement.fetchcolumn" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>PDOStatement::fetchColumn</refname>
|
||||
@@ -75,13 +75,13 @@
|
||||
$sth = $dbh->prepare("SELECT isim, renk FROM meyveler");
|
||||
$sth->execute();
|
||||
|
||||
print("Sonuç kümesindeki sonraki satırın ilk sütunu:\n");
|
||||
print "Sonuç kümesindeki sonraki satırın ilk sütunu:\n";
|
||||
$result = $sth->fetchColumn();
|
||||
print("name = $result\n");
|
||||
print "name = $result\n";
|
||||
|
||||
print("Sonuç kümesindeki sonraki satırın ikinci sütunu:\n");
|
||||
print "Sonuç kümesindeki sonraki satırın ikinci sütunu:\n";
|
||||
$result = $sth->fetchColumn(1);
|
||||
print("colour = $result\n");
|
||||
print "colour = $result\n";
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 082ddc19f53e6e254010de1a1fbbe485ff744ec1 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 28529d3539b850e870e3aa97570f4db0e53daa03 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="pdostatement.rowcount" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>PDOStatement::rowCount</refname>
|
||||
@@ -68,7 +68,7 @@ $del->execute();
|
||||
|
||||
/* Silinen satır sayısını döndürelim */
|
||||
$count = $del->rowCount();
|
||||
print("$count satır silindi.\n");
|
||||
print "$count satır silindi.\n";
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 0ce949d098c21c0109d289c372cc02d12228dbd3 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: b4756524479423ee3118adec1effa89171a9ffda Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="pdostatement.setfetchmode" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>PDOStatement::setFetchMode</refname>
|
||||
@@ -44,8 +44,8 @@
|
||||
<term><parameter>kip</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>PDO::FETCH_*</literal> sabitlerinden biri olarak veri alım
|
||||
kipi.
|
||||
<link linkend="pdo.constants"><constant>PDO::FETCH_<replaceable>*</replaceable></constant></link>
|
||||
sabitlerinden biri olarak veri alım kipi.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<!-- EN-Revision: 68c2c871505aadf983f16113c5b077b335ce8d76 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: cecccfc4d621a2dd0b6d9a6c76443551a768d12a Maintainer: nilgun Status: ready -->
|
||||
<reference xml:id="ref.pdo-ibm" xmlns="http://docbook.org/ns/docbook">
|
||||
<?phpdoc extension-membership="pecl" ?>
|
||||
<title>IBM (PDO_IBM) İşlevleri</title>
|
||||
@@ -18,6 +18,9 @@
|
||||
<!-- Information found in configure.xml -->
|
||||
&reference.pdo-ibm.configure;
|
||||
|
||||
<!-- Information found in ini.xml -->
|
||||
&reference.pdo-ibm.ini;
|
||||
|
||||
</partintro>
|
||||
|
||||
<refentry xml:id="ref.pdo-ibm.connection">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 1634a886415d0ab4df195fe49d18a1c150b70758 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: df58adf8fff5cf7dea921a841e28ea2478e678ea Maintainer: nilgun Status: ready -->
|
||||
<book xml:id="book.sqlite3" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<?phpdoc extension-membership="bundled" ?>
|
||||
<title>SQLite3</title>
|
||||
@@ -16,6 +16,7 @@
|
||||
&reference.sqlite3.setup;
|
||||
&reference.sqlite3.constants;
|
||||
&reference.sqlite3.sqlite3;
|
||||
&reference.sqlite3.sqlite3exception;
|
||||
&reference.sqlite3.sqlite3stmt;
|
||||
&reference.sqlite3.sqlite3result;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 715a103ca5859b3f52f271af807a0738412f0456 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 1f0319dfed1968563fe4a3445c88cfc80cf71df0 Maintainer: nilgun Status: ready -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.str-pad">
|
||||
<refnamediv>
|
||||
<refname>str_pad</refname>
|
||||
@@ -105,6 +105,15 @@ echo str_pad($input, 3, "*"); // "Ayran" üretilir
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>mb_str_pad</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 71b1e926631d5f5bec9b2e2685553453349ae799 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: d369659c3ffdc8b60f3958b587eea94e6e867fec Maintainer: nilgun Status: ready -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.stristr">
|
||||
<refnamediv>
|
||||
<refname>stristr</refname>
|
||||
@@ -82,6 +82,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
&strings.changelog.ascii-case-folding;
|
||||
&strings.changelog.needle-empty;
|
||||
<row>
|
||||
<entry>8.0.0</entry>
|
||||
<entry>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 31d54a1c340cec9b15047f9f398d10e15f59f934 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 654ee5c8afdf4ee721befdd0937fa155c50dca43 Maintainer: nilgun Status: ready -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.strrchr">
|
||||
<refnamediv>
|
||||
<refname>strrchr</refname>
|
||||
@@ -111,15 +111,20 @@
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
// $PATH içindeki son dizini döndürür
|
||||
$dir = substr(strrchr($PATH, ":"), 1);
|
||||
|
||||
// son satırsonu karakterinden sonrakı herşey
|
||||
$text = "Line 1\nLine 2\nLine 3";
|
||||
$last = substr(strrchr($text, 10), 1 );
|
||||
$ext = strrchr('somefile.txt', '.');
|
||||
echo "dosya uzantısı: $ext \n";
|
||||
$ext = $ext ? strtolower(substr($ext, 1)) : '';
|
||||
echo "dosya uzantısı: $ext";
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
&example.outputs.similar;
|
||||
<screen>
|
||||
<![CDATA[
|
||||
dosya uzantısı: .txt
|
||||
dosya uzantısı: txt
|
||||
]]>
|
||||
</screen>
|
||||
</example>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 06791a63aa7aa896e38a9ffab57f1fe49c48a841 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 943c1285bd3808ad764f01da00b59458110133c0 Maintainer: nilgun Status: ready -->
|
||||
<refentry xml:id="function.get-headers" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>get_headers</refname>
|
||||
@@ -157,7 +157,7 @@ $context = stream_context_create(
|
||||
)
|
||||
]
|
||||
);
|
||||
$headers = get_headers('http://example.com', $context);
|
||||
$headers = get_headers('http://example.com', false, $context);
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 14767af0f05dffa6fdb9b49e1a1f4e9ca7022a60 Maintainer: nilgun Status: ready -->
|
||||
<!-- EN-Revision: 45234c31bbca01df99daf96c51f1410808148eef Maintainer: nilgun Status: ready -->
|
||||
<phpdoc:classref xml:id="class.ziparchive" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<title><classname>ZipArchive</classname> sınıfı</title>
|
||||
<titleabbrev>ZipArchive</titleabbrev>
|
||||
@@ -144,6 +144,12 @@
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.fl-enc-cp437">ZipArchive::FL_ENC_CP437</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.fl-open-file-now">ZipArchive::FL_OPEN_FILE_NOW</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
@@ -462,6 +468,42 @@
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.er-cancelled">ZipArchive::ER_CANCELLED</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.er-data-length">ZipArchive::ER_DATA_LENGTH</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.er-not-allowed">ZipArchive::ER_NOT_ALLOWED</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.afl-rdonly">ZipArchive::AFL_RDONLY</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.afl-is-torrentzip">ZipArchive::AFL_IS_TORRENTZIP</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.afl-want-torrentzip">ZipArchive::AFL_WANT_TORRENTZIP</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.afl-create-or-keep-file-for-empty-archive">ZipArchive::AFL_CREATE_OR_KEEP_FILE_FOR_EMPTY_ARCHIVE</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
@@ -630,6 +672,18 @@
|
||||
<type>string</type>
|
||||
<varname linkend="ziparchive.constants.libzip-version">ZipArchive::LIBZIP_VERSION</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.length-to-end">ZipArchive::LENGTH_TO_END</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>public</modifier>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="ziparchive.constants.length-unchecked">ZipArchive::LENGTH_UNCHECKED</varname>
|
||||
</fieldsynopsis>
|
||||
|
||||
<classsynopsisinfo role="comment">&Properties;</classsynopsisinfo>
|
||||
<fieldsynopsis>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 476ab39857fb032076f280fa5397ed483bf7e28d Maintainer: haluk Status: ready -->
|
||||
<!-- EN-Revision: 21191d3f9d170c8e9589ca670d1cda9f23e07ac4 Maintainer: haluk Status: ready -->
|
||||
<refentry xml:id="ziparchive.open" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>ZipArchive::open</refname>
|
||||
|
||||
Reference in New Issue
Block a user